-
browser
I use this code to detect browser version
but when I test it with IE 6 it gives me netscape as browser
name, what is wrong and what is best way to
detect browser version in asp
please help me
<%
Set MyBrow=Server.CreateObject("MSWC.BrowserType")
response.write ucase(MyBrow.browser)
%>
<%if ucase(MyBrow.browser)="IE" then%>
<!--#include file="s_ie.inc" -->
<%else%>
<!--#include file="s_other.inc" -->
<%end if%>
-
Ok, I found the answer,
best way was servervariables that i have not checked it..
good luck