|
来源:网站维护 |
作者:www.weihula.com |
人气: |
2015-5-13 |
asp怎么判断用户登录呢?如果登录错误,肯定就要显示登录错误信息,而不是错误了也可以登录。
<%
dim admin_username,admin_password
admin_username=trim(request("username"))
admin_password=trim(request("password"))
if admin_username="" or admin_password="" then
response.write "<script>alert(’对不起,用户名和密码不能为空!’);document.location.href=’index.asp’;</script>"
response.end
end if’这里是判断输入是不是为空
%>
<%
set conn = Server.CreateObject("ADODB.Connection")
DBPath = Server.MapPath("db1.mdb")
conn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath
Set rs = Server.CreateObject("ADODB.Recordset")
sql="select * from info where Username=’"&admin_username&"’"
rs.open sql,conn,1,1
if not rs.eof then
’这个IF判断的意思是:输入的用户名和数据库里的用户名一致的时候。这是你还要判断输入的密码对不对,是吧?所以就有下面的IF。
if rs("UserPwd")<>admin_password then
response.write "<script>alert(’对不起,密码不正确,请重新输入’);document.location.href=’index.asp’;</script>"
response.end
else
response.redirect "index2.asp"
’密码也对的情况下,就可以登录index2.asp页面了
’一般,你最好是还要设置session。这样方便别的页面判断是不是登录了。如
’session("jsusername")=username
’session("jsPassword")=Password
end if
end if
%>
<%
rs.close
set rs=nothing
conn.close
set rs=nothing
%> |
【声明】本文章系本站编辑转载,转载目的在于传递更多信息,并不代表本网赞同其观点和对其真实性负责。如涉及作品内容、版权和其它问题,请在30日内与本站联系,我们将在第一时间删除内容! |
|
|
|
|
|
|
|
|