asp获得浏览器agent信息代码
时间:2021-08-08 08:26:04|栏目:ASP代码|点击: 次
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 %>
以上所述就是本文的全部内容了,希望大家能够喜欢。
上一篇:asp中Scripting.Dictionary字典对象使用示例
栏 目:ASP代码
本文标题:asp获得浏览器agent信息代码
本文地址:http://www.codeinn.net/misctech/165213.html