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 %>
以上所述就是本文的全部內容了,希望大家能夠喜歡。
新聞熱點
疑難解答