欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

asp獲得瀏覽器agent信息代碼

 更新時間:2015年05月19日 15:21:35   投稿:hebedich  
最近做的一個項(xiàng)目中需要使用asp來獲取瀏覽器的agent信息,好久都不玩ASP了,先度娘一下吧,把結(jié)果總結(jié)一下分享給大家。

WEB開發(fā)經(jīng)常用到各個主流瀏覽器的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獲取當(dāng)前瀏覽器UA的方法:

<% 
dim ua 
ua=Request.ServerVariables("HTTP_USER_AGENT") 
response.write ua 
%>

以上所述就是本文的全部內(nèi)容了,希望大家能夠喜歡。

相關(guān)文章

最新評論