我如何知道使用者所用的浏览器?

发表于:2007-06-30来源:作者:点击数: 标签:
答 使用the Request object方法

strBrowser=Request.ServerVariables("HTTP_USER_AGENT")
If Instr(strBrowser,"MSIE") <> 0 Then
Response.redirect("ForMSIEOnly.htm")
Else
Response.redirect("ForAll.htm")
End If

原文转自:http://www.ltesting.net