Dear all,
Please tell me how to prevent multiple user logged in same browser at same time in asp.net application.
security.
like gmail .
Regards
Niranjan Poddar
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manish Kumar ChoudharyPosted Jan 7, 2015, 3:22 AM
it depends on your logic how you manage. One logic will be like...
Add a Boolean field Is_LogInStatus to your Login table once user login make it true when logout make it false
While login check condition like if Is_LogInStatus false then only login allowed if true then display message like you are already login.
Posted Jan 8, 2015, 12:32 AM
Manish Sir is right, I have also implemented this one in my application.
Niranjan PoddarPosted Jan 8, 2015, 12:18 AM
Niranjan poddar