Hello,
I have a simple .Net 4.0 application which requires users to log in with their Windows credentials. I have the application set to only authenticate with Windows authentication. All other modes (Basic, Forms, Digest, ASP.Net Impersonation) are all disabled.
Once the user is logged in, the user can use the application with no problems. The problem is, if another person logs in as a different user, on a different computer, then that user's identity is assumed with the other user.
To put another way:
"User A" logs onto the application on "Computer A".
"User B" logs onto the application on "Computer B".
"User B" is now the signed in user for User A on Computer A.
And so on and so on....
If User A logs out and back into the application, now User A becomes the user for User B... and so forth for User C and User D...
It's always the most recent user that logged in tha ...
Go to the complete details ...