protected void btnCerrarSesion_Click(object sender, EventArgs e) { BaseSession.Logout(); Response.Redirect("~/Layout/Login.aspx", false); }
private void LimpiarSession() { BaseSession.Logout(); }
//private void Load_Settings() //{ // BaseEntity objBase = new BaseEntity(); // DataTable dt = ResourceBL.Instance.Settings_GetAll(ref objBase); // if (objBase.Errors.Count == 0) // { // if (dt != null) // { // foreach (DataRow item in dt.Rows) // { // hfIsVisiableChat.Value = item["ChatOnlineActive"].ToString(); // } // } // } //} protected void btnCloseSession_ServerClick(object sender, EventArgs e) { BaseSession.Logout(); Response.Redirect("Index.aspx"); }