asp.net mvc getting started with this framework
1。asp.net mvc URL routing
- IIS determines the request should be handled by ASP.NET
- The MvcHandler uses IControllerFactory to obtain an instance of IController using the "controller" route data from the route {controller}/{action}/{id}.
- The HomeController is found, and its Execute method is invoked
- The HomeController invokes the Index action
- The Index action adds some objects to the ViewData dictionary
- ASP.NET renders the response to the browser.
2.Controller两种形式
如果您觉得不错,欢迎扫码支持下。
作者:许强1. 本博客中的文章均是个人在学习和项目开发中总结。其中难免存在不足之处 ,欢迎留言指正。 2. 本文版权归作者和博客园共有,转载时,请保留本文链接。