Esempio n. 1
0
 public ActionResult Create([Bind(Include = "Name")] Language language)
 {
     try
     {
         if (ModelState.IsValid)
         {
             dao.Create(language);
             return(RedirectToAction("Index"));
         }
     }
     catch
     {
         ModelState.AddModelError("", "Unable to save changes. Try again, and if the problem persists see your system administrator.");
     }
     return(View(language));
 }