asp 防采集代码
asp 防采集代码
发布时间:2015-06-05 来源:查字典编辑
摘要:DimAppealNum,AppealCountAppealNum=10'同一IP60秒内请求限制10次AppealCount=Reques...

Dim AppealNum,AppealCount
AppealNum=10 '同一IP60秒内请求限制10次
AppealCount=Request.Cookies("AppealCount")
If AppealCount="" Then
response.Cookies("AppealCount")=1
AppealCount=1
response.cookies("AppealCount").expires=dateadd("s",60,now())
Else
response.Cookies("AppealCount")=AppealCount+1
response.cookies("AppealCount").expires=dateadd("s",60,now())
End If
if int(AppealCount)>int(AppealNum) then
response.write "/醒您:抓取很累,歇一会儿吧!"
response.end
End If

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类