Losing Session Values

  • Thread starter Thread starter ruca
  • Start date Start date
R

ruca

Hi,

I have a question for you all...

I have two pages, where one it's for user fill some fields information and
the second page ia a confirmation page.

Here I have a problem, I'm using session variables to pass some values from
one page to another. The problem is that some times (yes, I mean some times
and not all times) I'm lossing this values, like the variables never exists.

How can this happen???

Can anyone give me some opinion???
 
One possible reason might be that the web app is being recycled by IIS.
What this means is that periodically to recover resources and such, IIS will
drop the existing app domain and restart a new one. In this case, all
session information is lost. Don't know if this is happening to you, but it
is one possibility.
 
Back
Top