用asp脚本实现限制IP访问
更新时间:2007年06月06日 00:00:00 作者:
cookies跨不了域很麻烦,有了这个脚本就方便多了.
<%
ip=Request.ServerVariables("REMOTE_ADDR")
set Fso=CreateObject("Scripting.FileSystemObject")
Set Files=Fso.OpenTextFile(server.mappath("./ip.txt"),1,false)
data=files.readall
files.close
set fso=nothing
if InstrRev(data, ip, -1, 0) = 0 then
set Fso=CreateObject("Scripting.FileSystemObject")
Set File=Fso.OpenTextFile(server.mappath("./ip.txt"),8,true)
file.writeline ip
file.close
set fso=nothing
response.write "此IP今天第一次访问该页面"
response.end
else
response.write "此IP以前访问过了"
response.end
end if
%>
<%
ip=Request.ServerVariables("REMOTE_ADDR")
set Fso=CreateObject("Scripting.FileSystemObject")
Set Files=Fso.OpenTextFile(server.mappath("./ip.txt"),1,false)
data=files.readall
files.close
set fso=nothing
if InstrRev(data, ip, -1, 0) = 0 then
set Fso=CreateObject("Scripting.FileSystemObject")
Set File=Fso.OpenTextFile(server.mappath("./ip.txt"),8,true)
file.writeline ip
file.close
set fso=nothing
response.write "此IP今天第一次访问该页面"
response.end
else
response.write "此IP以前访问过了"
response.end
end if
%>
相关文章
Session.TimeOut的最大取值是1440,超出会报错
Session.TimeOut的取值以分钟为单位,最大取值是1440分钟,也就是24个小时,如果给它赋一个更大的值2009-06-06ASPWebPack(整站文件备份系统) v1.0.2 黑客也用
ASPWebPack(整站文件备份系统) v1.0.2 黑客也用...2007-10-10asp中用insert into语句向数据库插入记录(添加信息)的方法
asp中用insert into语句向数据库插入记录信息的方法,学习的朋友可以参考下。2010-09-09
最新评论