H
HuangSkar
Unregistered / Unconfirmed
GUEST, unregistred user!
我用一个RecordSet返回乐一个数据集,现在我想判断一个字段的值是否为空,如果为空
的话我就用一个系统的默认变量来替换,但是我发现在ASp中我竟然无法判断一个空值。
语句如下:
=====
iDate=Rs("talk_date") ‘数据空中为空值
if isnull(idate) or (idate="") or isempty(idate) then
idate=Application("MeetStartDate")
end if
但是Asp无法作出正确的判断,他认为if的结果为true
请问各位大虾,到底如何判断空值!!!
的话我就用一个系统的默认变量来替换,但是我发现在ASp中我竟然无法判断一个空值。
语句如下:
=====
iDate=Rs("talk_date") ‘数据空中为空值
if isnull(idate) or (idate="") or isempty(idate) then
idate=Application("MeetStartDate")
end if
但是Asp无法作出正确的判断,他认为if的结果为true
请问各位大虾,到底如何判断空值!!!