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两种形式

posted @ 2010-09-01 15:26  qiang.xu  阅读(179)  评论(0编辑  收藏  举报