欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

asp获得浏览器agent信息代码

程序员文章站 2022-04-15 10:15:25
web开发经常用到各个主流浏览器的useragent信息,我们来看看asp如何来获取呢 使用范例一 <% dim a a = browsr if...

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 
%>

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