ASP.NET MVC生命周期介绍
摘要:
1、Request 请求到来2、IIS 根据请求特征将处理权移交给 asp.net3、UrlRoutingModule将当前请求在 Route Table中进行匹配4、UrlRoutingModule在RouteCollection中查找Request匹配的RouteHandler,默认是mvcRouteHandler mvcRouteHandler 创建 mvcHandler实例.5、mvcHandler执行 ProcessRequest.6、mvcHandler 使用 IControllerFactory 获得实现了IController接口的实例,找到对应的HomeController7 阅读全文
posted @ 2014-03-18 12:45 riky1989 阅读(164) 评论(0) 推荐(0)