When a session starts, the logon page "Default.aspx" will use two SQL functions, one of them will read the UserID and the other reads the userType. Then I will write these two integer values in a couple of session variables to be able to use them in quering
anything related to that UserID in this session.
I hosted my application and the database on a testing server.
The problem:
-> Open session no. 1 OK --> user no. 1
-> Open session no. 2 OK --> user no. 2
-> refreshing session no. 1 (F5) --> user no. 2 --> and here is the problem
drsa353
0 Points
1 Post
Session state variables of all sesions are overwritten by a newer sessions
Feb 27, 2012 08:41 AM|LINK
When a session starts, the logon page "Default.aspx" will use two SQL functions, one of them will read the UserID and the other reads the userType. Then I will write these two integer values in a couple of session variables to be able to use them in quering anything related to that UserID in this session.
I hosted my application and the database on a testing server.
The problem:
-> Open session no. 1 OK --> user no. 1
-> Open session no. 2 OK --> user no. 2
-> refreshing session no. 1 (F5) --> user no. 2 --> and here is the problem
Anyone has idea about what's happening?
Thanks