参考: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
这节我们让ASP.NET MVC真正的跑起来 一.新建Controller 首先我们自己新建一个新的Controller在Controllers上点右键,添加,Controller选项 之后出现一个对话框: 这里我们将之起名为EiceController 默认生成的代码如下: //记不记得前面讲过的,所有Controller都要继承于Controller类 public class EiceController : Controller { public ActionResult Ind
ViewData属性 ViewData属性是System.Web.Mvc.ControllerBase中的一个属性,它相当于一个数据字典.Controller中向该字典写入数据,ViewData[“Key”]=data;View中从该字典中获取数据 int data=ViewData[“Key”].从ViewData中获取到的数据是object类型,必须强制类型转换. // // 摘要: Gets or sets the dictionary for view data. // 返回结果: Th