I want to make a multi user login for my application. In this multiple user can login in different tabs of same browser.
-
Maybe, you can use sessionStorage w3schools.com/html/html5_webstorage.asp You keep session info on the browser sessionEsat ARSLAN– Esat ARSLAN2018-12-06 13:12:50 +00:00Commented Dec 6, 2018 at 13:12
-
You can use Session createSessionKey for each user check this stackoverflow.com/questions/722171/…Bilel Wannassi– Bilel Wannassi2018-12-06 15:13:56 +00:00Commented Dec 6, 2018 at 15:13
-
Thank you for the reply. But i am using owin library for login system, it is Single SO. I want to make it multi sign onParvesh Yadav– Parvesh Yadav2018-12-11 05:08:45 +00:00Commented Dec 11, 2018 at 5:08
Add a comment
|
1 Answer
you need to maintain unique session for each login you can check this Unique session in multiple browser tabs in ASP.NET MVC
1 Comment
Parvesh Yadav
Thank you for the reply. But i am using owin library for login system, it is Single SO. I want to make it multi sign on.