亚洲新天堂无码在线看_无码精品人妻二区二区_久久久久精品国产电影_亚洲高清无码专区视频

當前位置:首頁 > 建站知識 > 常見問題 > 正文

asp判斷是否登錄的代碼

來源:征帆網(wǎng)絡  作者:ymars  日期:2013-2-20

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判斷的意思是:輸入的用戶名和數(shù)據(jù)庫里的用戶名一致的時候。這是你還要判斷輸入的密碼對不對,是吧?所以就有下面的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
%>

相關文章列表