public ActionResult Delete(int id, FormCollection collection) { try { StudentHandler handler = new StudentHandler(); handler.DeleteById(id); return(RedirectToAction("Index")); } catch { return(View()); } }