亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

防止網(wǎng)站內(nèi)容被小偷采集的ASP代碼

 更新時(shí)間:2006年09月25日 00:00:00   作者:  
復(fù)制代碼 代碼如下:

防止一般的采集以及小偷讀取,加在頂部。同理,可以改造成JS腳本。
<% 
Dim AppealNum,AppealCount 
AppealNum=10 '同一IP60秒內(nèi)請求限制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 
%>

相關(guān)文章

最新評論