private void UpdateValue() { try { if (!CheckInsert()) { if (Session["login"] != null && Session["UserName"] != null && Session["AccountID"] != null) { var obj = new DTOUser { AccountID = int.Parse(Session["AccountID"].ToString()), Email = txtEmail.Value, FullName = txtFullName.Value, CellPhone = txtCellPhone.Value, Group_Id = null, Gender = rdMade.Checked ? "Nam" : "Nữ", Birthday = DateTime.Parse(txtBirthday.Value), Country_ID = int.Parse(drCountry.SelectedValue), Language_ID = int.Parse(drLanguage.SelectedValue), DateBegin = DateTime.Parse(lbDateBegin.Text), }; BllUser.Update(obj); _Error = LibAlert.Alert.AlertSucess("Chúc mừng ! Bạn đã cập nhật thành công tài khoản !"); GetUserEdit(); } } } catch (Exception ex) { _Error = LibAlert.Alert.AlertError("Có lỗi xảy ra trong quá trình cập nhật" + "<br/>" + ex.Message); } }