asp.net 页面关闭事件

 //在类中重写OnInit方法。这个方法是在页面初始化的时候被调用的 
    protected override void OnInit(EventArgs e)
    {
        base.OnInit(e);
        this.Unload += new EventHandler(Page_Unload);
    }
    protected void Page_Unload(object sender, EventArgs e)
    {
        //这里面填写你需要的操作的代码,当页面结束的时候系统会自动调   
        HttpContext.Current.Session["t_admin"] = null;
    }

你可能感兴趣的:(asp.net 页面关闭事件)