ASPNET MVC3技术要点(9)
发布时间:2021-06-06
发布时间:2021-06-06
ASPNET MVC3技术要点
// create the Cart if there wasn't one in the session data if (cart == null) {
cart = new Cart();
controllerContext.HttpContext.Session[sessionKey] = cart; }
// return the cart return cart; } }
为完成绑定需要在Global.asax.cs的Application_Start()添加如下语句: ModelBinders.Binders.Add(typeof(Cart), new CartModelBinder()); 3.2 控制器输出
3.2.1 输出视图ViewResult
如果在/Views/<ControllerName>下找不视图名的文件会到/Views/Shared下寻找 3.2.1.1 返回与动作函数同名的视图 public ViewResult Index() {
return View(); }
3.2.1.2 返回指定名的视图 public ViewResult Index() {
return View("Homepage"); }
上一篇:S3C44B0 学习板使用指南
下一篇:朗文交互英语第二级A2答案