Does anyone know what the proper code is to detect whether the user is useing MSIE or N.S.? obviously it would be Request.servervariables("HTTP_USER_AGENT "
, but there is somthign where if it is NS then you can redirect it or if it is MSIE then you can redirect it.
Example:
If Request.ServerVariables("HTTP_USER_AGENT",1) = "MSIE" then
response.redirect("msie.asp"
Else
response.redirect("ns.asp"
End IF
Thanks in advance!
-Ovatvvon

Example:
If Request.ServerVariables("HTTP_USER_AGENT",1) = "MSIE" then
response.redirect("msie.asp"

Else
response.redirect("ns.asp"

End IF
Thanks in advance!
-Ovatvvon