ASP不等于怎么写?

if len(yonghu)=0 then
这个是如果yonghu等于空
那个要写如果yonghu不等于空。的话不等号怎么写?是!= ??

第1个回答  推荐于2017-05-20
if yonghu="" or isnull(yonghu) then '等于空
end if

if yonghu<>"" or not(isnull(yonghu)) then '不等于空
end if本回答被网友采纳
第2个回答  2010-07-05
if len(yonghu)<>0 then
第3个回答  2010-07-05
简单
if len(yonghu)<>0 then
第4个回答  2010-07-05
<> 就可以了。