asp获得浏览器agent信息代码
程序员文章站
2022-07-02 18:16:29
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 %>
以上所述就是本文的全部内容了,希望大家能够喜欢。