码迷,mamicode.com
首页 > Web开发 > 详细

MVC – 9.mvc整体请求流程

时间:2014-07-09 13:47:29      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   strong   

1.请求管道

2~5微软自己的验证,我们一般不用。

在全局配置文件中-已经配置一个路由过滤器-为第7个事件注册了路由方法

bubuko.com,布布扣

bubuko.com,布布扣

 

1.在application_start中向静态路由表注册了路由数据,在管道第7个事件方法中使用了该路由表数据

1.1.确保网站第一次调用了Global.asax文件里的Application_Start

routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Students", action = "Index", id = UrlParameter.Optional }
            );

MVC – 9.mvc整体请求流程,布布扣,bubuko.com

MVC – 9.mvc整体请求流程

标签:style   blog   http   color   使用   strong   

原文地址:http://www.cnblogs.com/tangge/p/3832525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!