标签:
1,在ASP.NET MVC中,路由机制特别碉堡,直接对应于动作方法。没有必要给每一个动作方法添加视图,当视图返回View时,路由系统会自动寻找指定目录下的视图资源。
1 public ViewResult AutoProperty() 2 { 3 Product p = new Product(); 4 p.Name = "Chris"; 5 return View("Result", (object)String.Format("你是:{0}", p.Name)); 6 }
如AutoProperty时HomeController中的动作方法,并没有指定视图,但是在返回视图的时候,会自动在Views\Home下查找指定的视图资源。
Url为~/Home/AutoProperty。同样验证了URL与动作方法的一致性。
标签:
原文地址:http://www.cnblogs.com/SharpL/p/4549632.html