public ActionResult Edit(Question question) { if (ModelState.IsValid) { var dao = new QuestionDao(); var result = dao.UpdateQues(question); if (result) { SetAlert("Cập nhật thành công", "success"); return(RedirectToAction("Index", "Question")); } else { ModelState.AddModelError("", "Cập nhật không thành công"); } } SetViewBags(); return(View("Index")); }