<%
BrowserAgent = Request.ServerVariables("HTTP_USER_AGENT")
If InStr(BrowserAgent,"MSIE") <> 0 Then
Browser = "InternetExplorer"
Else
Browser = "Else"
End If
If Browser = "InternetExplorer" Then
'Put here your script for Internet Explorer
Else
'And here your script for another Browser
End If
%>
discuss this topic to forum
