45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:asp如何获取访客浏览器的agent?

asp如何获取访客浏览器的agent?

2015-06-30 08:19:51 来源:www.45fan.com 【

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 
%>

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


本文地址:http://www.45fan.com/bcdm/12983.html
Tags: 浏览器 获得 asp
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部