[求助]修改密码问题
<% dim name
name=request.Form("name")
set rs=server.CreateObject("adodb.recordset")
rs.open"select * from denglu where name='"&request("name")&"'", conn,1,3
if rs.eof then%>
<script>
alert("该用户不存在!")
history.back()
</script>
<%
rs.close
set rs=nothing
response.End()
elseif rs("pwd")<>Request.Form("pwd") then
%>
<script>
alert("旧密码错误!")
history.back()
</script>
<%
rs.close
set rs=nothing
else %>
<%
rs("pwd")=Request.Form("pwd1")
rs.update
end if
%>
<script>
alert("密码修改成功!")
open("1.asp","_self")
</script>
为什么我无论输入正确或错误的密码都提示“旧密码不正确”