示例#1
0
 public ActionResult Delete(int id)
 {
     FeedbackManager.Delete(id);
     this.TempData["msg"] = "The feedback with id: " + id + " has been successfully deleted";
     return(RedirectToAction(actionName: "Index", controllerName: "Dashboard"));
 }