Sessionstate not being saved between pages

Posted by Grant on Stack Overflow See other posts from Stack Overflow or by Grant
Published on 2010-05-03T13:29:14Z Indexed on 2010/05/03 13:38 UTC
Read the original article Hit count: 278

Filed under:
|
|
|

Hi, i am having problems with an asp.net c# site whereby i am setting a session state object to true and then redirecting to another page that needs to check the value of the session state object and it is null.

Sometimes it is set correctly and other times is is simply null.

When i debug on my local machine it works perfectly every time. Only when i upload to my web server does this temperamental behaviour happen.

As it is based around the security of the site it is obviously important that the session data be valid and accurate every time.

Is session state data unreliable?

AFAIK its set to inproc, cookieless, 30 min timeout, vanilla installation of IIS.

Does anyone have any suggestions? Perhaps i need to thread.sleep inbetween the storing of the session data and the reading?

NB: the time between the write and the read is about 70ms.. ample time for the data to be written to RAM.....

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about session-state