Session Variables Not Being Saved Between Page Redirects

  • Thread starter Thread starter Hanover
  • Start date Start date
H

Hanover

Im having problems maintaining session state.

I set a session variable like this:

Session("NavigatedAway") = "Yes"

Then when I redirect to another page and try to look at the session
variable, it's set to Nothing.

Any clues?

I have EnableSessionState on my page directives..and cookies are on.

The reason I need to do this that I need to maintain the current state
of my webform when I navigate away from it so that it will have all the
same settings when I navigate back to it.
 
Hanover said:
Im having problems maintaining session state.

I set a session variable like this:

Session("NavigatedAway") = "Yes"

Then when I redirect to another page and try to look at the session
variable, it's set to Nothing.

Any clues?

I have EnableSessionState on my page directives..and cookies are on.

The reason I need to do this that I need to maintain the current state
of my webform when I navigate away from it so that it will have all the
same settings when I navigate back to it.

What method/event are you placing the code in to store the var?

Mythran
 
Back
Top