session在驗(yàn)證管理登陸時(shí)的使用方法_ASP教程
教程Tag:暫無(wú)Tag,歡迎添加,賺取U幣!
推薦:ASP安全:簡(jiǎn)單學(xué)習(xí)ASP連接數(shù)據(jù)庫(kù)方法1.連ACCESS:conn.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & Server.mappath("/db/database.mdb") 此采用根目錄的相對(duì)路徑方法,可以解決整個(gè)網(wǎng)站
初學(xué)ASP的人對(duì)session一直不是很了解. 我這只cai鳥(niǎo)就在這談?wù)勗谧龊?jiǎn)單后臺(tái)登陸時(shí)session的簡(jiǎn)單使用:一:login.htm
這個(gè)頁(yè)面我就不多說(shuō)了 加上表單 寫(xiě)上管理員昵稱(chēng) 給出文本框username
寫(xiě)上密碼 給出文本框userpass 再加一個(gè)提交按扭即可. 注:表單的action為chklogin.asp
二:chklogin.asp
<!--#include file="conn.asp"-->
<%set rs=server.CreateObject("adodb.recordset")
sql="select * from admin where username='"&request.Form("username")&"'"
'其中admin為存貯管理員帳號(hào)和密碼的表名
rs.open sql,con,1,1
%>
<%if rs.eof then
response.Write"沒(méi)有這個(gè)管理員"
else
%>
<%
username=trim(request.Form("username"))
password=request.Form("password")
%>
<%if password=rs("userpass") then
session("admin")="ercifang"
response.Redirect("manage.asp")
else
response.Write"本頁(yè)為管理員專(zhuān)用頁(yè)面"
end if
%>
<%end if%>
看紅色的文字,這樣就為管理員添加的了一個(gè)session
在manage.asp中第一行設(shè)置
<%if session("admin")="ercifang" then
……
else
response.write"只有管理員才能進(jìn)入本頁(yè)面"
end if%>
這樣,其他人直接訪(fǎng)問(wèn)manage.asp時(shí)就不能對(duì)本站進(jìn)行管理了。
下面再給出login.htm的代碼:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>管理登陸</title> <style type="text/css"> .fengge{font-size:12px} </style> </head> <body> <form name="form1" method="post" action="chklogin.asp"> <table width="400" border="1" align="center" class="fengge"> <tr> <td width="129"> </td> <td width="255"> </td> </tr> <tr> <td><div align="right">管理員名稱(chēng):</div></td> <td><input name="username" type="text" id="username"></td> </tr> <tr> <td><div align="right">管理密碼:</div></td> <td><input name="password" type="password" id="password"></td> </tr> <tr> <td><div align="right"></div></td> <td><input type="submit" name="Submit" value="提交"> <input type="reset" name="Submit" value="重置"> </td> </tr> <tr> <td colspan="2"><div align="right"></div></td> </tr> </table> </form> </body> </html> |
分享:.net中如何給數(shù)據(jù)表實(shí)體類(lèi)賦值的方法今天遇到一個(gè)問(wèn)題,就是數(shù)據(jù)實(shí)體類(lèi)中如何給屬性賦值。因?yàn)閺臄?shù)據(jù)庫(kù)中取出來(lái)的是一個(gè)DataSet如果一個(gè)一個(gè)給數(shù)據(jù)實(shí)體類(lèi)中的屬性賦值顯的非常的笨拙,而且我們的數(shù)據(jù)表多達(dá)24個(gè)。在網(wǎng)上搜索了下寫(xiě)
相關(guān)ASP教程:
- asp FSO 讀寫(xiě)文件本文件實(shí)現(xiàn)代碼
- asp中isNull、isEmpty和空字符串的區(qū)別
- asp獲取用戶(hù)真實(shí)IP地址的方法
- asp連接sqlserver數(shù)據(jù)庫(kù)實(shí)現(xiàn)代碼
- asp中正則表達(dá)式過(guò)濾html代碼函數(shù)
- asp中g(shù)et post提交表單區(qū)別
- 網(wǎng)頁(yè)模板:ASP內(nèi)建對(duì)象Request
- xmlhttp的open方法使用詳解
- ASP的常用的自定義函數(shù)大全
- asp中用for循環(huán)的一個(gè)小技巧
- eWebEditor v3.8 列目錄
- ASP無(wú)組件分頁(yè)實(shí)現(xiàn)思路及代碼
ASP教程Rss訂閱編程教程搜索
ASP教程推薦
- 如何解決left截取字符標(biāo)題長(zhǎng)度不一
- 關(guān)于Asp代碼與頁(yè)面的分離
- 如何用ASP實(shí)現(xiàn)對(duì)ORACLE數(shù)據(jù)庫(kù)的操作
- ASP 3.0高級(jí)編程(四十一)
- asp中設(shè)置session過(guò)期時(shí)間方法總結(jié)
- ASP 3.0高級(jí)編程(三十一)
- ASP實(shí)現(xiàn)長(zhǎng)文章手動(dòng)分頁(yè)的代碼
- 用紅色顯示ASP查詢(xún)數(shù)據(jù)時(shí)得到的記錄關(guān)鍵詞
- 如何防止access數(shù)據(jù)庫(kù)被下載的代碼
- ASP常見(jiàn)的保留字整理(變量與表名注意不能用)
- 相關(guān)鏈接:
- 教程說(shuō)明:
ASP教程-session在驗(yàn)證管理登陸時(shí)的使用方法。