国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

asp實現限制一個ip只能訪問一次的方法

瀏覽:93日期:2022-06-05 11:46:01

限制一個ip只能訪問一次,現在將asp代碼分享給大家:

<% 
"http:///////////////////////////////////////////////////// 
"http:// // 
"http://作用:一個IP地址只允許訪問本頁一次 // 
"http://引用:<!-- #include file="Check_Ip.asp" --> // 
"http:// // 
"http:///////////////////////////////////////////////////// 

"Response.Charset = 936 "設置輸出編碼為簡體中文 
"Response.Buffer = false "關閉緩沖區 

Dim Fso,ts,IpList,Cfs 

"設置Cookies函數 
Function SetCookie() 
Response.Cookies("IsBrow") = "Brow" 
Response.Cookies("IsBrow").Expires = Date+365 
End Function 

"記錄IP地址函數 
Function WriteIp(FileName, IpAddress) 
Set Fso = Server.CreateObject("Scripting.FileSystemObject") 
Set ts = Fso.OpenTextFile(Server.MapPath(FileName),8,true) 
ts.WriteLine IpAddress 
ts.Close 
Set ts = Nothing 
Set Fso = Nothing 
End Function 

"讀取IP地址函數 
Function ReadIpList(FileName) 
Set Fso = Server.CreateObject("Scripting.FileSystemObject") 
If Not Fso.FileExists(Server.MapPath(FileName)) Then 
CreateFile("Iplist.txt") 
Exit Function 
End If 

Set ts = Fso.OpenTextFile(Server.MapPath(FileName)) 
Iplist = ts.ReadAll 
ts.Close 
Set ts = Nothing 
Set Fso = Nothing 
ReadIpList = Iplist 
End Function 

"創建文件函數 
Function CreateFile(FileName) 
Set Fso = Server.CreateObject("Scripting.FileSystemObject") 
Set Cfs = Fso.CreateTextFile(Server.MapPath(FileName)) 
Cfs.Close 
Set Cfs = Nothing 
Set Fso = Nothing 
End Function 

"關閉當前IE窗口函數(注:IE6下通過,其他瀏覽器未測試) 
Function CloseWindow() 
"Response.Write "<script>window.location="javascript:window.opener=null;window.close();"</script>" 
Response.Redirect "http://www.baidu.com" 
End Function 

Ip = Request.ServerVariables("REMOTE_ADDR") "獲取瀏覽者IP地址 

Cookie = Request.Cookies("IsBrow") "獲取當前Cookies 
"Response.Write Cookie 

If Request.ServerVariables("HTTP_X_FORWARDED_FOR") <> "" Then 
Response.Write "本站不允許使用代理訪問" 
Response.End() 
Else 
If Cookie = "Brow" Then 
CloseWindow() 
Else 
If Instr(ReadIpList("Iplist.txt"),Ip) <> 0 Then 
CloseWindow() 
Else 
WriteIp "Iplist.txt" , Ip 
End If 
SetCookie() 
End If 
End If 
%>

以上就是分享給大家的asp實現代碼,希望對大家的學習有所幫助。

標簽: ASP
主站蜘蛛池模板: 乐昌市| 财经| 奈曼旗| 大厂| 岑巩县| 隆林| 环江| 珲春市| 肇庆市| 福鼎市| 广丰县| 泸水县| 长宁县| 阜新| 万州区| 尤溪县| 开封县| 星子县| 天全县| 伽师县| 安庆市| 禹城市| 桓台县| 库尔勒市| 静乐县| 昔阳县| 龙井市| 二连浩特市| 嘉定区| 景德镇市| 阜城县| 安义县| 商洛市| 株洲县| SHOW| 秭归县| 马关县| 阿图什市| 若羌县| 哈巴河县| 碌曲县|