Function f(msg)
set Dic = server.CreateObject("Scripting.Dictionary")
if msg="" then
f = null
else
set f = Dic
end if
End Function
msg = ""
set t = f(msg)
这会出错
我想没有数据就返回null
但set null会出错
怎么弄
set Dic = server.CreateObject("Scripting.Dictionary")
if msg="" then
f = null
else
set f = Dic
end if
End Function
msg = ""
set t = f(msg)
这会出错
我想没有数据就返回null
但set null会出错
怎么弄