#12004/2/12 15:47:37
pass1=username&chr(13)&chr(10)&password //用户输入的用户名及密码
set fso=server.createobject("scripting.filesystemobject")
pf=server.mapPath("password.txt")
set sto=fso.opentextfile(pf,1)
pass=trim(server.htmlencode(sto.readALL)) //文本文件中的用户名及密码
if instr(pass,pass1)>0 then //?这里该怎么写才能实现登陆的功能
登陆
else
错
end if
现在的程序如果密码是999,输入9就能登陆
该怎么改