标题: [求助]登录判断用户名和密码是否正确 [打印本页] 作者: 兰桂枋 时间: 2010-1-7 05:38 标题: [求助]登录判断用户名和密码是否正确 <%dim rs
set rs=server.createobject("adodb.recordset")
%><title>注册判断</title>
rs.source "select * from information where name='"&name&"'"and password='"&password&"'",conn,1,3
rs.open
if not rs.eof then
if password=rs("password") then
session("name")=ok
Response.write("<script>alert('登陆成功');location.href="登录成功.asp"</script>" )
else
response.write ("<script>alert('用户密码错误');location.href('会员登录.asp')</script>")
end if
end if
if rs.eof then
response.write ("<script>alert('用户帐号错误');location.href('会员登录.asp')</script>")
end if
set rs=nothing
rs.close
好像上面那里出错了,我的帐号和密码输入不对,都可以登录成功,那位大大来帮下忙!谢谢啦~~作者: 天使的眼泪 时间: 2010-1-7 05:38
我也没看明白........作者: →大虾米々 时间: 2010-1-7 05:38
楼上的大大把密码错误能登录的问题解决了!但是现在用户密码都输对了还是显示用户帐号密码错误~~
我把全部check.asp的贴出来给你们看吧!
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="../Connections/first.asp" -->
<% dim name,password
dim db
db = "../cdms.mdb"
Set Conn = server.CreateObject("ADODB.CONNECTION")
Conn.open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & server.mappath(db) & "")
name=request.Form("name")
password=request.form("password")
if name="" then
%><script language=javascript>
alert("帐号为空");
location.href="首页.asp"
</script>
<% end if %>
<%
if password="" then
%><script language=javascript>
alert("密码为空");
location.href="首页.asp"
</script>
<% end if %>
<title>注册判断</title>
<%
set rs=server.CreateObject("adodb.recordset")
sql="select * from information where name='"&names&"' and password='"&password&"'"
rs.open sql,conn,1,3
if rs.eof then
response.write ("<script>alert('用户帐号密码错误');location.href('首页.asp')</script>")
response.End()
else
session("name")=ok
Response.write("<script>alert('登陆成功');location.href=('登录成功.asp')</script>" )
end if
rs.close
set rs=nothing
%>作者: 勇敢的心 时间: 2010-1-7 05:38
以下是引用yms123在2007-5-20 19:58:05的发言:
http://www.pconline.com.cn/pcedu/videoedu/asp/0607/821118.html
推荐楼主先学习以下ASP的数据库操作知识和VBScript面向对象的知识。
<%
names=request("name")
password=md5(request("password"))
set rs=server.CreateObject("adodb.recordset")
sql="select * from information where name='"&names&"' and password='"&password&"'"
rs.open sql,conn,1,3
if rs.eof then
response.write ("<script>alert('用户帐号密码错误');location.href('会员登录.asp')</script>")
response.End()
else
session("name")=ok
Response.write("<script>alert('登陆成功');location.href="登录成功.asp"</script>" )
end if
rs.close
set rs=nothing
%>
name是关键字.
斑竹还真是很细心啊!!!作者: →大虾米々 时间: 2010-1-7 05:38
楼上的大大我晓得慢慢学是好的,但是毕设就要上交了,没时间了!哎~~
感谢楼上的大大!作者: 龙龙 时间: 2010-1-7 05:38
是不是我的代码有错误就贴成上面那种格式了?急死了!作者: 魔舞飞扬 时间: 2010-1-7 05:38
<%
names=request("name")
password=md5(request("password"))
set rs=server.CreateObject("adodb.recordset")
sql="select * from information where name='"&names&"' and password='"&password&"'"
rs.open sql,conn,1,3
if rs.eof then
response.write ("<script>alert('用户帐号密码错误');location.href('会员登录.asp')</script>")
response.End()
else
session("name")=ok
Response.write("<script>alert('登陆成功');location.href="登录成功.asp"</script>" )
end if
rs.close
set rs=nothing
%>