示例#1
0
 public ActionResult Delete(int id)
 {
     try
     {
         model = new Categorias(Session);
         model.Delete(id);
         return RedirectToAction("Index");
     }
     catch
     {
         return View();
     }
 }