how to kill the session when user closed the browser without logout

后端 未结 3 1744
心在旅途
心在旅途 2021-01-14 11:39

I am developing one aspnet application in that i am using Sessions. if user login into the application and click on logout here i am closing session.

suppose if the

3条回答
  •  无人及你
    2021-01-14 12:06

    You can define what should happen when a Session expires in Global.asax.cs.

    protected void Session_End(Object sender, EventArgs e)
    {
        // Do stuff here...
    }
    

    Edit: There is no way for the web server to know that you have closed a web browser.

提交回复
热议问题