ASP判断访问是否来自搜索引擎

网络整理 - 09-04
以下是一个判断当前访问是否来自搜索引擎的函数,有兴趣的站长可以试试:

<%
'检查当前访问是否为搜索引擎的蜘蛛人
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,则当前访问为搜索引擎的蜘蛛人
%>