加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 站长学院 > Asp教程 > 正文

asp获取浏览器agent信息代码

发布时间:2023-04-08 14:04:36 所属栏目:Asp教程 来源:
导读:WEB开发经常用到各个主流浏览器的userAgent信息,我们来看看asp如何来获取呢

使用范例一

<%dim aa = Browsrif InStr( a, "MSIE" ) then &#39; browser is Internet Explorerelse &#39; browser is some othe
WEB开发经常用到各个主流浏览器的userAgent信息,我们来看看asp如何来获取呢
 
使用范例一
 
<%dim aa = Browsrif InStr( a, "MSIE" ) then ' browser is Internet Explorerelse ' 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 %>
 
以上所述就是本文的全部内容了,希望大家能够喜欢。
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章