防止网站内容被人小偷和采集的ASP代码

防止一般的采集以及小偷读取,加在顶部。 
  同理,可以改造成JS脚本。 
   
  <% 
  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 
  %> 


'引用自http://www.jscode.cn/arthtml/art4656.htm


文章来自: 本站原创
引用通告地址: http://www.is21.cn/trackback.asp?tbID=681
Tags:
评论: 0 | 引用: 0 | 查看次数: 2035
发表评论
你没有权限发表留言!