通过本文主要向大家介绍了asp文件浏览器,asp浏览器,asp浏览器下载,asp源代码,asp代码等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
WEB开发经常用到各个主流浏览器的userAgent信息,我们来看看asp如何来获取呢
使用范例一
<% dim a a = Browsr if InStr( a, "MSIE" ) then ' browser is Internet Explorer else ' browser is some other type... end if %></div>
ASP Source Code:
<% Private Function Browsr() Browsr = Request.ServerVariables("HTTP_USER_AGENT") End Function %></div>
范例二:
ASP获取当前浏览器UA的方法:
<% dim ua ua=Request.ServerVariables("HTTP_USER_AGENT") response.write ua %></div>
以上所述就是本文的全部内容了,希望大家能够喜欢。
</div>