protected void btnLogin_Click(object sender, EventArgs e) { string username = Request.Cookies["userLoginSystem"].Value; var acc = AccountController.GetByUsername(username); if (acc != null) { if (acc.RoleID == 0) { int id = ViewState["ID"].ToString().ToInt(0); if (id > 0) { var d = VariableController.GetByID(id); if (d != null) { VariableController.Update(id, txtCustomerName.Text, "", chkIsHidden.Checked, DateTime.Now, username); PJUtils.ShowMessageBoxSwAlert("Cập nhật thành công", "s", true, Page); } } } } }