Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
表中某列为空值有两种情况,NUll与""
dim s as string = dr("列1")
如何判断是否为空值(NUll与“”)
用if s IsNot Nothing then 只判断列值为NULL,用 if s <> "" then 只判断列值为""
请教如何判断两种空值都为空时 都为true呢。
if s IsNot Nothing or s <> "" then 不能达到。请各位指点!
不行的。