Using the
Response Object
with the
Redirect Method
for: Browser Specific Re-Direct
Click here to test this script.
Code:
Highlight
<% if instr(1,request.servervariables("HTTP_USER_AGENT"), "MSIE") Then response.redirect "http://www.microsoft.com" else response.redirect "http://www.netscape.com" end if %>