WEB开发经常用到各个主流浏览器的userAgent信息,我们来看看asp如何来获取呢
使用范例一
?
1
2
3
4
5
6
7
8
9 |
<% dim a a = Browsr if InStr( a, "MSIE" ) then ' browser is Internet Explorer else ' browser is some other type... end if %> |
ASP Source Code:
?
1
2
3
4
5 |
<% Private Function Browsr() Browsr = Request.ServerVariables( "HTTP_USER_AGENT" ) End Function %> |
范例二:
ASP获取当前浏览器UA的方法:
?
1
2
3
4
5 |
<% dim ua ua=Request.ServerVariables( "HTTP_USER_AGENT" ) response.write ua %> |
以上所述就是本文的全部内容了,希望大家能够喜欢。
jsp复习资料汇总
[JSP]2017年1月24日asp教程编程辅导汇总
[ASP]2016年12月2日JSP快速入门教程汇总
[JSP]2016年12月2日jsp基本用法和命令汇总
[JSP]2016年10月3日ASP编码教程:如何实现/使用缓存
[ASP]2015年4月15日