Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > asp技巧

asp获得浏览器agent信息代码

来源:中文源码网    浏览:160 次    日期:2024-05-14 22:37:14
【下载文档:  asp获得浏览器agent信息代码.txt 】


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
%>
以上所述就是本文的全部内容了,希望大家能够喜欢。

相关内容