参考:http://www.asp.net/mvc/tutorials/mvc-4/getting-started-with-aspnet-mvc4/examining-the-details-and-delete-methods 我们再来看看自动生成的Details 和Delete methods. MoviesController中的Details方法: public ActionResult Details(int? id) { if (id == null) { return new H…