获取用户的浏览器
|
泡泡ASP相关代码: <% function browser(info) if Instr(info,"NetCaptor 6.5.0")>0 then browser="NetCaptor 6.5.0" elseif Instr(info,"MyIe 3.1")>0 then browser="MyIe 3.1" elseif Instr(info,"NetCaptor 6.5.0RC1")>0 then browser="NetCaptor 6.5.0RC1" elseif Instr(info,"NetCaptor 6.5.PB1")>0 then browser="NetCaptor 6.5.PB1" elseif Instr(info,"MSIE 5.5")>0 then browser="Internet Explorer 5.5" elseif Instr(info,"MSIE 6.0")>0 then browser="Internet Explorer 6.0" elseif Instr(info,"MSIE 6.0b")>0 then browser="Internet Explorer 6.0b" elseif Instr(info,"MSIE 5.01")>0 then browser="Internet Explorer 5.01" elseif Instr(info,"MSIE 5.0")>0 then browser="Internet Explorer 5.00" elseif Instr(info,"MSIE 4.0")>0 then browser="Internet Explorer 4.01" else browser="其它" end if end function %>
您的浏览器:<%=browser(Request.ServerVariables("HTTP_USER_AGENT"))%>
|