.net - Instantly shut down or set log out for users -
i have asp .net mvc 2.0 webapplication, , need have button named "shut down" or "block all". should log out users, or (mb shut down server).
is possible? thx.
if using forms authentication unless track users session impossible log users out. authenticated users tracked cookies , if restart application domain using httpruntime.unloadappdomain();
method client browsers still have authentication cookies , users automatically logged in on subsequent requests. if store user specific information in session when restart application domain information deleted , know user should no longer authenticated has no associated session data.
Comments
Post a Comment