我如何知道使用者所用的浏览器?
来源:岁月联盟
时间:2003-04-10
strBrowser=Request.ServerVariables("HTTP_USER_AGENT")
If Instr(strBrowser,"MSIE") <> 0 Then
Response.redirect("ForMSIEOnly.htm")
Else
Response.redirect("ForAll.htm")
End If
上一篇:如何计算每天的平均反复访问人数