asp限制域名訪(fǎng)問(wèn)實(shí)現(xiàn)代碼
asp 設(shè)置只能指定域名可以使用此網(wǎng)站
代碼一 原創(chuàng)
<% myIp = ",127.0.0.1,localhost,www.jb51.net," myurl= request.ServerVariables("SERVER_NAME") Response.write myurl if InStr(myIp,","&myurl&",")>0 then Response.write "域名合法" else Response.write "域名不合法" end if %>
代碼二
myIp = Array("127.0.0.1","jb51") myHou = new Array("",".com") myDirect ="http://www.jb51.net/" ip= request.ServerVariables("HTTP_HOST") j=0 for i=0 to ubound(myIp) "Response.Write(i&"--"&myIp(i)&"<br>") if InStr(ip,myIp(i)&myHou(i))>0 then "Response.Write(myIp(i)&"==") j=j+1 end if next if j<1 then response.Redirect(myDirect) end if
上面的代碼用到了下面的資料
asp獲取當(dāng)前域名和端口號(hào)方法
asp獲取當(dāng)前域名從來(lái)就不是什么有難度的事情,但是在實(shí)際項(xiàng)目使用中,大家獲取的具體URL信息可能是不同的,各個(gè)方法獲取見(jiàn)下表,而如果要獲取當(dāng)前域名,可以看下面加粗部分:
Request.ServerVariables("SERVER_NAME")"當(dāng)前域名
Request.ServerVariables("SERVER_PORT")"當(dāng)前端口
Request.ServerVariables("SCRIPT_NAME")"當(dāng)前文件名
Request.ServerVariables("QUERY_STRING")"當(dāng)前頁(yè)面的傳入?yún)?shù)
Request.ServerVariables("HTTP_USER_AGENT")"取得當(dāng)前瀏覽器信息
Request("remote_addr")"取得IP
Request.ServerVariables("HTTP_REFERER")"上個(gè)頁(yè)面地址
Request.ServerVariables("HTTP_HOST")"獲取當(dāng)前域名
當(dāng)采用SERVER_NAME時(shí)返回的是不帶端口號(hào)的URL
相關(guān)文章:
1. 詳細(xì)分析css float 屬性以及position:absolute 的區(qū)別2. ASP中格式化時(shí)間短日期補(bǔ)0變兩位長(zhǎng)日期的方法3. ASP基礎(chǔ)知識(shí)Command對(duì)象講解4. xpath簡(jiǎn)介_(kāi)動(dòng)力節(jié)點(diǎn)Java學(xué)院整理5. 得到XML文檔大小的方法6. PHP設(shè)計(jì)模式中工廠(chǎng)模式深入詳解7. ASP刪除img標(biāo)簽的style屬性只保留src的正則函數(shù)8. PHP循環(huán)與分支知識(shí)點(diǎn)梳理9. html小技巧之td,div標(biāo)簽里內(nèi)容不換行10. ASP實(shí)現(xiàn)加法驗(yàn)證碼
