首页 > 编程 > ASP > 正文

asp获得浏览器agent信息代码

2024-05-04 11:10:00
字体:
来源:转载
供稿:网友

最近做的一个项目中需要使用asp来获取浏览器的agent信息,好久都不玩ASP了,先度娘一下吧,把结果总结一下分享给大家。

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

使用范例一

 

 
  1. <% 
  2. dim a 
  3. a = Browsr 
  4. if InStr( a, "MSIE" ) then 
  5. ' browser is Internet Explorer 
  6. else 
  7. ' browser is some other type... 
  8. end if 
  9. %> 

ASP Source Code:

 

 
  1. <% 
  2. Private Function Browsr() 
  3. Browsr = Request.ServerVariables("HTTP_USER_AGENT"
  4. End Function 
  5. %> 

范例二:

ASP获取当前浏览器UA的方法:

 

 
  1. <%  
  2. dim ua  
  3. ua=Request.ServerVariables("HTTP_USER_AGENT")  
  4. response.write ua  
  5. %> 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表