建站知識
網(wǎng)站設計知識 網(wǎng)站建設知識 網(wǎng)絡營銷知識 微信資訊 常見問題 網(wǎng)站備案 近期客戶網(wǎng)站建設套餐
標準型網(wǎng)站建設 精美型網(wǎng)站建設 營銷型網(wǎng)站建設 高端品牌網(wǎng)站建設 電子商務型網(wǎng)站建設 行業(yè)門戶型網(wǎng)站建設 手機網(wǎng)站建設 微信網(wǎng)站建設asp判斷是否登錄的代碼
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
%>