asp获得浏览器agent信息代码
asp获得浏览器agent信息代码
发布时间:2016-12-29 来源:查字典编辑
摘要:WEB开发经常用到各个主流浏览器的userAgent信息,我们来看看asp如何来获取呢使用范例一ASPSourceCode:范例二:ASP获...

WEB开发经常用到各个主流浏览器的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获取当前浏览器UA的方法:

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

以上所述就是本文的全部内容了,希望大家能够喜欢。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新ASP教程学习
热门ASP教程学习
编程开发子分类