I have Client's website where only one user can be logged in, if another user try to login from another login page , it shows access denied. Now my client requested to put button on login page , when click on it , it will automatically logout the logged in user and closes all the related tabs. following things in tried
Used LocalStorage Event (refereed from following Answer from Stack overflow)
How user will Logout from all open tabs automatically when user logs out in one of them
Problem: Dont Work in IE at all (as my client use only IE)
Used Sessions
Problem :same IE dont Support Session and LocalStorage
Passing a Javascript window reference to the session https://bytes.com/topic/javascript/answers/861472-passing-javascript-window-reference-session Problem: blocked by Browser , seems like we cant store window object to session.
Any Suggestion or Advice , how can i do this?