请求高手指点下,ASP中len()问题
<%T3=Request.form("T3")
if len(T3)<>10 then
response.write "<script language=javascript>alert('号码不为10位数);history.go(-1);</script>"
end if
if len(T3)="" then
response.write "<script language=javascript>alert('号码不能为空');history.go(-1);</script>"
end if
%>
T3返回的号码为1234567890 ,这个是10个数字啊怎么还是提示“号码不为10位数字啊”
帮我看下程序哪儿有问题