G
Guest
Hello:
This was posted in a wrong forum; that's why I am posting here again. Sorry.
I just wrote my first ASP.Net application, tested it on my development
environment and deployed it on a production server. That's when I encountered
a problem. The anonymous access is turned of and Integrated Windows
Authentication is turned on.
In my Global.ASCX, I have coded the Session_Start event
1. I read Request.ServerVariables("Auth_User")
2. Save it as a variable, userid, in the session variable.
Here is the problem:
1. User A signs in and the screen shows that the userid is "User A".
2. User B signs in through another workstation and his user ID shows "User
A" when in fact it should show "User B".
I thought the session is private to the user?
I got feedback that I should not do anything in Global. Also, setting
session variables in the Session_start event is loopy!
Can somebody tell me what I am doing wrong?
Venki
This was posted in a wrong forum; that's why I am posting here again. Sorry.
I just wrote my first ASP.Net application, tested it on my development
environment and deployed it on a production server. That's when I encountered
a problem. The anonymous access is turned of and Integrated Windows
Authentication is turned on.
In my Global.ASCX, I have coded the Session_Start event
1. I read Request.ServerVariables("Auth_User")
2. Save it as a variable, userid, in the session variable.
Here is the problem:
1. User A signs in and the screen shows that the userid is "User A".
2. User B signs in through another workstation and his user ID shows "User
A" when in fact it should show "User B".
I thought the session is private to the user?
I got feedback that I should not do anything in Global. Also, setting
session variables in the Session_start event is loopy!
Can somebody tell me what I am doing wrong?
Venki