源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

asp获得浏览器agent信息代码

  • 时间:2021-11-07 07:09 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要: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 
%>
以上所述就是本文的全部内容了,希望大家能够喜欢。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部