我的ntext类型的字段中明明是空的~
但我
if trim(rs("user"))="" then
     content="<font color=red>未填写</font>"
else
     content="<span class=STYLE3>OK</span>"
end if
执行结果是“OK”我改为
if trim(rs("user"))<>"" then
     content="<font color=red>未填写</font>"
else
     content="<span class=STYLE3>OK</span>"
end if
执行结果还是是“OK”不知道怎么解决!