| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 619 人关注过本帖
标题:[求助]登陆验证时出现的错误提示
只看楼主 加入收藏
fashlove
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2007-10-26
收藏
 问题点数:0 回复次数:0 
[求助]登陆验证时出现的错误提示

这个是我的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
%>

搜索更多相关主题的帖子: 密码 blank 数据库表 include 用户名 
2007-11-20 09:05
快速回复:[求助]登陆验证时出现的错误提示
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.030781 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved