使用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

相关文章:

  • 2021-06-19
  • 2022-12-23
  • 2021-12-12
  • 2021-10-11
  • 2021-11-01
  • 2021-10-23
  • 2021-06-12
猜你喜欢
  • 2021-11-30
  • 2021-11-19
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
  • 2021-07-11
  • 2021-07-07
相关资源
相似解决方案