asp获得浏览器agent信息代码

2015 年 8 月 7 日3800

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



%>

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

标签分类:

浏览器agent ASP

上一篇:上一篇:ASP中只有UrlEncode,没有Urldecode问题的解决方法?

下一篇: 下一篇:asp、html、js 禁止缓存的代码

0 0