Lifecycle of an ASP.NET MVC 5 Application

Posted on Microsoft .NET Support Team See other posts from Microsoft .NET Support Team
Published on Tue, 04 Mar 2014 06:40:00 +0000 Indexed on 2014/05/27 3:38 UTC
Read the original article Hit count: 267

Filed under:

Here you can download a PDF Document that charts the lifecycle of every ASP.NET MVC 5 application, from receiving the HTTP request to sending the HTTP response back to the client. It is designed both as an educational tool for those who are new to ASP.NET MVC and also as a reference for those who need to drill into specific aspects of the application. The PDF document has the following features:

  • Relevant HttpApplication stages to help you understand where MVC integrates into the ASP.NET application lifecycle.
  • A high-level view of the MVC application lifecycle, where you can understand the major stages that every MVC application passes through in the request processing pipeline.
  • A detail view that shows drills down into the details of the request processing pipeline. You can compare the high-level view and the detail view to see how the lifecycles details are collected into the various stages.
  • Placement and purpose of all overridable methods on the Controller object in the request processing pipeline. You may or may not have the need to override any one method, but it is important for you to understand their role in the application lifecycle so that you can write code at the appropriate life cycle stage for the effect you intend.
  • Blown-up diagrams showing how each of the filter types (authentication, authorization, action, and result) is invoked.
  • Link to a useful article or blog from each point of interest in the detail view.

© Microsoft .NET Support Team or respective owner

Related posts about ASP.NET