定义一个函数:
function nullstr(str)
if isnull(str) then
nullstr=""
else
nullstr=str
end if
end function
这样处理
response.Cookies("Admin_level")=nullstr(Rs("level"))
定义一个函数:
function nullstr(str)
if isnull(str) then
nullstr=""
else
nullstr=str
end if
end function
这样处理
response.Cookies("Admin_level")=nullstr(Rs("level"))