예제 #1
0
 protected void btnCerrarSesion_Click(object sender, EventArgs e)
 {
     BaseSession.Logout();
     Response.Redirect("~/Layout/Login.aspx", false);
 }
예제 #2
0
 private void LimpiarSession()
 {
     BaseSession.Logout();
 }
예제 #3
0
 //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");
 }