Session Variable not working

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • EPepin

    Session Variable not working

    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.Redire ct "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
  • Aaron Bertrand - MVP

    #2
    Re: Session Variable not working





    "EPepin" <edwin.j.pepin@ verizon.com> wrote in message
    news:82c9c31.03 10151030.73a336 b9@posting.goog le.com...[color=blue]
    > 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.Redire ct "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[/color]


    Comment

    • EPepin

      #3
      Re: Session Variable not working

      Thank you Aaron, This explained it.

      Ed


      "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message news:<u4CEEt0kD HA.2592@TK2MSFT NGP10.phx.gbl>. ..[color=blue]
      > www.aspfaq.com/2157
      >
      >
      >
      > "EPepin" <edwin.j.pepin@ verizon.com> wrote in message
      > news:82c9c31.03 10151030.73a336 b9@posting.goog le.com...[color=green]
      > > 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.Redire ct "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[/color][/color]

      Comment

      Working...