日期:2010-08-25 09:41:00 来源:本站整理
判断能否是蜘蛛的asp代码[网站编程]
本文“判断能否是蜘蛛的asp代码[网站编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
判断能否为搜索引擎蜘蛛的asp代码以下:
- <%
- function GetBot()
- '查询蜘蛛
- dim s_agent
- GetBot=""
- s_agent=Request.ServerVariables("HTTP_USER_AGENT") ‘关键判断语句
- if instr(1,s_agent,"谷歌bot",1) >0 then
- GetBot="谷歌"
- end if
- if instr(1,s_agent,"msnbot",1) >0 then
- GetBot="MSN"
- end if
- if instr(1,s_agent,"slurp",1) >0 then
- GetBot="Yahoo"
- end if
- if instr(1,s_agent,"百度spider",1) >0 then
- GetBot="百度"
- end if
- if instr(1,s_agent,"sohu-search",1) >0 then
- GetBot="Sohu"
- end if
- if instr(1,s_agent,"lycos",1) >0 then
- GetBot="Lycos"
- end if
- if instr(1,s_agent,"robozilla",1) >0 then
- GetBot="Robozilla"
- end if
- end function
- if GetBot="百度" then
- '给百度定制的内容
- elseif GetBot="谷歌" then
- '给谷歌 定制的内容
- end if
- %>
以上是“判断能否是蜘蛛的asp代码[网站编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论