Session Variables work from Page1 to Page2 / lost from Page2 to Page3

P

P. Prosper

Hello all

I have a small webform application with three WebForms that use session
variables to maintain session data (user name)

When I transfer to page 2 from page1 session state is transferred OK, but is
lost when I use a command button to transfer from page2 to page3.

It seem to have something to do with a timeout of some sort because if I
transfer from page2 loadEvent directly to page3,
the session variable is maintained.

I have disabled my anti virus software completely.

I have checked in my cookies folder and the cookie is just not being created
(IE is set to prompt before accepting cookies)

I am using VS.NET 2003 and ASP.NET 1.1

Any suggestions / tip would be greatly appreciated

my web config is as follows

<sessionState

mode="InProc"

stateConnectionString="tcpip=127.0.0.1:42424"

sqlConnectionString="data source=127.0.0.1;Trusted_Connection=yes"

cookieless="false"

timeout="20"

/>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top