您好,欢迎来到点滴吧! 手机版
点滴吧www.diandiba.com
记录点点滴滴,尽在点滴吧
  • 文章
  • 文章
  • 特效
  • 素材
  • 景点
您现在的位置:首页 > ASP教程 > 文章正文
Asp判断蜘蛛来访的代码
更新时间:2015/1/5 17:31:46   点击:1961次

检查当前用户是否是搜索引擎蜘蛛


函数代码:

<%
Function check(user_agent)  
    allow_agent=split("Baiduspider,Scooter,ia_archiver,Googlebot,bingbot,FAST-WebCrawler,MSNBOT,Slurp,YoudaoBot,Sogou+web+spider",",")  
    check_agent=false  
    For agenti=lbound(allow_agent) to ubound(allow_agent)  
        If instr(lcase(user_agent),lcase(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")  
if check(user_agent)=true then  
response.write("This is a search engine spider!&#65279;")  
end if
%>


相关文章
导航分类
热门文章
关于我们| 联系我们| 免责声明| 网站地图|
CopyRight 2012-2015 www.diandiba.com - 点滴吧 All Rights Reserved
滇ICP备09005765号-2