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

[ 2005-07-01 13:24:29 | 作者: Admin ] 字号: | |
防止网站内容被人小偷和采集的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
%>
Share
评论Feed 评论Feed: http://www.85815.com/feed.asp?q=comment&id=478
UTF-8 Encoding 引用链接: http://www.85815.com/trackback.asp?id=478&key=
这篇日志没有评论.
发表
表情图标
[smile] [confused] [cool] [cry]
[eek] [angry] [wink] [sweat]
[lol] [stun] [razz] [redface]
[rolleyes] [sad] [yes] [no]
[heart] [star] [music] [idea]
UBB代码
转换链接
表情图标
悄悄话
用户名:   密码:   注册?
验证码 * 请输入验证码