当前位置:首页 > ASP教程 > 应用技巧

asp获得浏览器agent信息代码

web开发经常用到各个主流浏览器的useragent信息,我们来看看asp如何来获取呢

使用范例一

<%
dim a
a = browsr
if instr( a, "msie" ) then
   ' browser is internet explorer
else
   ' browser is some other type...
end if
%>

asp source code:

<%
private function browsr()
  browsr = request.servervariables("http_user_agent")
end function
%>

范例二:

asp获取当前浏览器ua的方法:

<% 
dim ua 
ua=request.servervariables("http_user_agent") 
response.write ua 
%>

以上所述就是本文的全部内容了,希望大家能够喜欢。


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!