• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

browser detection (ASP)

OuiKikUrAzz

Senior member
How do you detect the browser using ASP then load the page accordingly?

my setup is that one of my javascript code's does not work for n6 (not surprising) and I want it to load a different code if n6 (and netscape in particular) is detected as opposed to my original design suited for IE
 
Best thing I can think of:

<%
strBrowserType = Request.ServerVariables=("HTTP_USER_AGENT")
'if this string is the string of N6 then you redirect it
If strBrowserType = something_that_shows_it's_N6 Then
Response.Redirect "page_you_wanna_show.asp"
End If

%>
 
Back
Top