Session Is being overwriiten

awziegler

New member
Joined
Jun 2, 2003
Messages
3
Im a newbie with asp.net so please bear with me. Thanks.

I have a web app, uses session inProc. My app is being used by multiple users simultaneously. It seems as though the correct session is not being returned to the correct user. For example: User A hits enter and returned to their screen is User Bs response. This is an intranet site and cookies are enabled on all desktops. The users are logging in using a separate domain account.

I cant for the life of me figure out what is going wrong.

Any clues would be greatly appreciated.

Thanks in advance.

Annmarie
 
Saving session data; such as userName, userID, etc...

Accessing

string userName = Session["userName"].ToString();
string userID = Session["userID"].ToString();


setting:
Session["userName"] = blah;

Annmarie
 
Session is automatic handle by IIS and it should be no problem...

What do you mean by "The users are logging in using a separate domain account"?

Your application using one IIS web server or more than one?
 
I mean that the users are logging on to the physical machine with a separate domain account.

I double checked all the machines to be sure that cookies were enabled.

We are using a single-processor, single-server running IIS. Im going to check the .net framework version on the server.

The web.config has session enabled.

I am going for the obvious and am also going to set session enabled in the header of all my aspx files (although MS says you dont need to do this if its set in the web.config).

This is the oddest error Ive seen.

I appreciate all the help.

Annmarie
 
I dont think there are any affect if you use separate domain, because web application basically is use by public from any domains...

Actually last time I faced the same problem, it is because we run our web application in R&D machine with evaluation copy of windows2000. After that we move it to other machine, it works fine. So, maybe you can try to run in other machine.
 
Back
Top