E
EPepin
I use a simple session variable set / not set for password protecting
access to certain directories on my intranet site.
<%
If Session("id") = "" Then
Response.Redirect "enter_NPC.asp"
Else
End if
%>
Recently, I have been getting complaints that some users accessing
with Internet Explorer cannot reach the site and are being sent to the
redirect page. These same users can get login using Netscape though,
and it is only maybe 10 out of 100 users being denied. I have had
them check to see if the Per-session cookie is allowed (it always is)
but they just can't get here using IE. Any suggestions?
Ed
access to certain directories on my intranet site.
<%
If Session("id") = "" Then
Response.Redirect "enter_NPC.asp"
Else
End if
%>
Recently, I have been getting complaints that some users accessing
with Internet Explorer cannot reach the site and are being sent to the
redirect page. These same users can get login using Netscape though,
and it is only maybe 10 out of 100 users being denied. I have had
them check to see if the Per-session cookie is allowed (it always is)
but they just can't get here using IE. Any suggestions?
Ed