ASP:判断访问是否来自搜索引擎的函数

2008-03-12 05:43:17来源: 阅读 ()

新老客户大回馈,云服务器低至5折

判断访问是否来自搜索引擎的函数,有兴趣的可以试试! 中国站.长.站

以下为引用的内容:
<%
'检查当前用户是否是蜘蛛人
Function check(user_agent)
    allow_agent=split("Baiduspider,Scooter,ia_archiver,Googlebot,FAST-WebCrawler,MSNBOT,Slurp",",")
    check_agent=false
    For agenti=lbound(allow_agent) to ubound(allow_agent)
        If instr(user_agent,allow_agent(agenti))>0 then
            check_agent=true
            exit for
        end if 站长.站
    Next
    check=check_agent
End function
user_agent=Request.ServerVariables("HTTP_USER_AGENT")
'check(user_agent)=true则判定访问为蜘蛛人
%>

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:一个在vbscript中读取cookie的程序函数

下一篇:ASP怎么谈到应用到类的?