//安全退出按钮的单击事件,退出后不能退回去
protected void Button1_Click(object sender, EventArgs e)
{
Session.Abandon(); //取消当前会话
Session.Clear(); //清除当前浏览器进程所有session
Response.Write("<script>window.top.opener=null;window.top.location='login.aspx';</script>");
}
前台提示:OnClientClick="return confirm('您确定要退出本系统吗?');"