0

当浏览器选项卡关闭时,我需要在 ASP.NET 中可靠地注销经过身份验证的用户。推荐的解决方案是什么?

谢谢

4

2 回答 2

0

通常,您会在会话结束时执行注销逻辑。但是,如果您必须检测页面何时关闭,请使用:

<body onunload="performMyLogoutLogic();">
...
...
</body>
于 2012-06-22T21:09:16.820 回答
-1

您可以使用通用处理程序来终止会话并在卸载之前调用它,如下所示:

function CloseSession( )
{
    location.href = 'KillSession.ashx?task=1'; 
}
window.onbeforeunload = CloseSession;

在您的 KillSession.ashx 中执行此操作

 public void ProcessRequest(HttpContext context)
            {
                if(!String.IsNullOrWhiteSpace(Request.QueryString["task"].toString()))
                {
                 if(Request.QueryString["task"].toString()=="1")
                  {
                    Session["User"]==null;
                    context.Response.ContentType = "text/plain";
                    context.Response.Write("Good Bye!");
                   }
                }
            }
于 2012-06-23T05:47:51.110 回答