[轉(zhuǎn)載]ASP實現(xiàn)簡單的網(wǎng)頁保護(hù)
當(dāng)前位置:點晴教程→知識管理交流
→『 技術(shù)文檔交流 』
主要使用request對象的servervariables屬性,通過它來獲得環(huán)境變量的值。使用的語法為:request.servervariables(variable),“variable”表示環(huán)境變量的名稱,如服務(wù)器主機(jī)名稱、web服務(wù)器軟件名等等,若“variable”為“remote_addr”則表示訪問者的ip地址,通過它就可以實現(xiàn)ip地址的過濾。 [br] 源程序如下:(文件名:demo.asp) [br][br] <html> [br] <head> [br] <meta http-equiv=“content-type” content=“text/html; charset=gb_2312-80”> [br] <meta name=“generator” content=“microsoft frontpage express 2.0”> [br][br] <style> [br] <!-- [br] .as{ line-h(huán)eight: 15px; font-size: 14px } [br] a:hover {color: rgb(0,51,240);text-decoration:underline} [br] .p9 { font-family: “宋體”; font-size: 14px; line-h(huán)eight: 15pt} [br] .p12 { font-family: “宋體”; font-size: 12pt; line-h(huán)eight: 18pt} [br] a:link { text-decoration: none;} [br] a:visited { text-decoration:none;} [br] a:hover {text-decoration: underline;font-size: 125%;color:blue} [br] ?。?gt; [br] </style> [br][br] <title>asp頁面防火墻功能演示</title> [br] </head> [br][br] <body background=“back.jpg”> [br] <% [br] ′使用request.servervariables(“remote_addr”)得到ip地址并保存在變量rip中 [br] rip=request.servervariables(“remote_addr”) [br] strip=cstr(rip) [br] ′取得ip地址第三個段的值并保存到strip中 [br][br] for i=1 to 2 [br] strip=right(strip,len(strip)-instr(1,strip,“.”)) [br] next [br][br] strip=left(strip,instr(1,strip,“.”)-1) [br] ′ip地址有效性檢驗及密碼驗證,包括兩方面的內(nèi)容: [br] ′如果ip地址符合則通過驗證;如果ip地址不符合則檢驗輸入的密碼是否正確(此處密碼為“asp”) [br] if (left(rip,5) <> “127.1” or strip<“1” or strip>“50”) and request(“passwd”)<>“asp” then [br] ?。?gt; [br] <p><font color=“#ff0000”>對不起,你的ip是<%=rip%>,本頁面可以訪問的ip是127.1.1.*到127.1.50.*之間,如果你是本單位內(nèi)部網(wǎng)的用戶,請確認(rèn)你的瀏覽器沒有使用代理!<br></font></p> [br][br] <form action=“demo.asp” method=“post” id=form1 name=form1> [br] <p>請輸入訪問密碼:<input type=“password” name=“passwd” > <input type=“submit” value=“確認(rèn)” name=“b1”>; [br] </p> [br] </form> [br][br] <%else %> [br] ′合法用戶可以訪問的頁面,在此可以加入任何信息 [br] 祝賀您,您已經(jīng)順利通過了頁面的安全認(rèn)證,可以直接使用本站點的資源! [br] <%end if%> [br] </body> [br] </html> [br][br] 實際使用只要稍微修改上面的程序(如ip地址等信息)就可以了,當(dāng)然這只是在一個頁面中實現(xiàn)了安全防范功能,如果一個網(wǎng)站有多個頁面的話,可以設(shè)置一個session變量來對用戶進(jìn)行標(biāo)志,以在后面的頁面中進(jìn)行判斷。
該文章在 2010/6/7 23:50:46 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |