本文介绍了用户关闭浏览器后如何终止会话?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的应用程序在Windows身份验证上工作,当用户关闭窗口时如何终止会话?

Hi, My application works on windows authentication, how to kill the session when user closes the window?

推荐答案



[System.Web.Script.Services.ScriptService]
public class Clearing : System.Web.Services.WebService
{
        [WebMethod(EnableSession = true)]
        public bool KillSession()
        {
                HttpContext.Current.Session.Clear();
                return true;


        }
}


然后,在您的页面上


Then, on your page

<asp:ScriptManagerProxy ID="smp1" runat="server">
                <Services>
                        <asp:ServiceReference Path="NameOfYourAsmxFile.asmx" />
                </Services>
        </asp:ScriptManagerProxy>


最后,使用onunload函数中的javascript:


And finally, in javascript from your onunload function:

ret = Clearing.KillSession(OnKillSessionComplete, OnServiceError, OnServiceError);


这篇关于用户关闭浏览器后如何终止会话?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-21 07:25