public ActionResult Create(Level level) { if (ModelState.IsValid) { //Xử lý MetaTitle if (!string.IsNullOrEmpty(level.Name)) { level.MetaTitle = StringHelper.ToUnsignString(level.Name); } var dao = new LevelDao(); long id = dao.Insert(level); if (id > 0) { SetAlert("Create a new level successfully.", "success"); return(RedirectToAction("Index", "Level")); } else { ModelState.AddModelError("", "Create a new level failed."); return(RedirectToAction("Create", "Level")); } } return(View(level)); }
public ActionResult Create(TbCapdo level) { var dao = new LevelDao(); var id = dao.Insert(level); if (id > 0) { SetAlert("Thêm cấp độ mới thành công", "success"); return(RedirectToAction("Index", "Level")); } else { ModelState.AddModelError("", "Thêm mới không thành công"); } return(View("Index")); }