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

Re: Session Variable not working by Aaron

Aaron
Wed Oct 15 13:36:12 CDT 2003

www.aspfaq.com/2157



"EPepin" <edwin.j.pepin@verizon.com> wrote in message
news:82c9c31.0310151030.73a336b9@posting.google.com...
> 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



Re: Session Variable not working by edwin

edwin
Thu Oct 16 12:14:28 CDT 2003

Thank you Aaron, This explained it.

Ed


"Aaron Bertrand - MVP" <aaron@TRASHaspfaq.com> wrote in message news:<u4CEEt0kDHA.2592@TK2MSFTNGP10.phx.gbl>...
> www.aspfaq.com/2157
>
>
>
> "EPepin" <edwin.j.pepin@verizon.com> wrote in message
> news:82c9c31.0310151030.73a336b9@posting.google.com...
> > 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