现在的位置: 首页 > 综合 > 正文

asp.net mvc getting started with this framework

2011年10月08日 ⁄ 综合 ⁄ 共 1116字 ⁄ 字号 评论关闭

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

抱歉!评论已关闭.