ASN
ASN

Reputation: 598

Multiple simultaneous user access with same credentials

I have a ASP.NET website where multiple users access the site using same user credentials. The site functions fine when used by single user, however when a second user with the same credentials logs in simultaneously and the first user performs any action (clicks any link, selects any dropdown etc.), the first user is redirected to the default/login page. I want both the users to access the site without any trouble.

Can any one comment on why this is happening and how this can be solved.

Upvotes: 1

Views: 1096

Answers (1)

mrt
mrt

Reputation: 1739

My guess for the reason of the behaviour would be the authentication method you are using. Probably when the first user logs in he gets a session ID that authorises him for the following requests.

When another user uses the same credentials to log in, different session ID is created for that user so the ID the first user has is not valid any more, and therefore he gets redirected to the login page.

Upvotes: 1

Related Questions