Can anyone find the problem in this code?
<%
Set bc = Server.CreateObject("MSWC.BrowserType"
If bc.browser = "Netscape" AND bc.version >= "5.0" then Response.Redirect("defaultie.asp"
End if
If bc.browser = "Microsoft Internet Explorer" AND bc.version >= "4.0" then Response.Redirect("defaultie.asp"
End If
%>
We are trying to redirect users to the page that will display right on their browser, but nothing is being redirected.
Thanks,
<%
Set bc = Server.CreateObject("MSWC.BrowserType"
If bc.browser = "Netscape" AND bc.version >= "5.0" then Response.Redirect("defaultie.asp"
End if
If bc.browser = "Microsoft Internet Explorer" AND bc.version >= "4.0" then Response.Redirect("defaultie.asp"
End If
%>
We are trying to redirect users to the page that will display right on their browser, but nothing is being redirected.
Thanks,