这个是我的check.asp文件,如下所示。在我运行的时候,它出现的错误是跳出一“对不起,密码不正确,请重新输入”的对话框,但是我输入的用户名和密码都是数据库表里边的,怎么会出现密码错误呢?请高手帮我看一下原因。我找了好长时间都没找出错在哪里。请帮帮忙
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="conn.asp"-->
<%
dim uid,upwd
uid=trim(Request.Form("txt_id"))
upwd=trim(Request.Form("txt_pwd"))
if uid="" then
response.write "<script>alert('对不起,用户名不能为空!');document.location.href='index.htm';</script>"
else if upwd="" then
response.write "<script>alet('对不起,密码不能为空!');document.location.href='index.htm';</script>"
response.end
end if
set rs=server.createobject("ADODB.recordset")
sql="select * from denglu where id='"&uid&"'"
rs.open sql,conn,1,1
%>
<%
if not rs.eof then
if rs("pwd")<>upwd then
response.write "<script>alert('对不起,密码不正确,请重新输入');document.location.href='index.htm';</script>"
response.end
else
session("user")=uid
response.redirect "main.asp"
flag="loginok"
end if
else
response.write "<script>alert('对不起,你的用户名不存在,请与管理员联系!');document.location.href='admin_index.asp';</script>"
response.end
end if
end if
%>
[求助]登陆验证时出现的错误提示