Пример #1
0
 public ActionResult DeleteConfirmed(int id)
 {
     try
     {
         studentCRUD.Delete(id);
     }
     catch (DataException /* dex */)
     {
         //Log the error (uncomment dex variable name and add a line here to write a log.
         return(RedirectToAction("Delete", new { id = id, saveChangesError = true }));
     }
     return(RedirectToAction("Index"));
 }