例如:
if isnull(rs(字段名)) = true (rs(字段名) is null(这种方法也可以)) then
为空
else
不为空
end if
还有一个另类的方法,就是判断字段长度,这种方法不推荐用,不过也介绍一下:
if len(trim(rs(字段名)))<1 then
为空(可能为空,因为可能会有一些不预知的情况)
else
长度大于或等于1(大概判断不为空)
end if
一般用以上两种方法大概就可以判断字段是不是为空了。
例如:
if isnull(rs(字段名)) = true (rs(字段名) is null(这种方法也可以)) then
为空
else
不为空
end if
还有一个另类的方法,就是判断字段长度,这种方法不推荐用,不过也介绍一下:
if len(trim(rs(字段名)))<1 then
为空(可能为空,因为可能会有一些不预知的情况)
else
长度大于或等于1(大概判断不为空)
end if
一般用以上两种方法大概就可以判断字段是不是为空了。