asp.net - Timed out web application with smart card authentication can only be logged in again after restart a new IE browser -
i have asp.net web application hosted in iis 8.5 using smart card log in. after timeout, have kill ie browsers , launch new 1 iis prompt certificate selection.
how can allow users re-login without launching new browser?
from the documentation:
note: in order force internet explorer prompt new credential tile, use file | new session
you must instruct users choose "new session" "file" menu in order re-prompted.
you can programmatically javascript:
document.execcommand("clearauthenticationcache");
note clear out session cookies.
Comments
Post a Comment