使用范例一
<% 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
%> 以上所述就是本文的全部内容了,希望大家能够喜欢。
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!