Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET MVC request processing sequence

Is there a definitve guide/reference on exactly what methods and in what sequence are invoked while processing a request in an ASP.NET MVC pipeline? Much like a sequence diagram, I guess.

like image 297
Anton Gogolev Avatar asked Mar 24 '11 17:03

Anton Gogolev


People also ask

What is the correct order for the lifecycle of an ASP.NET MVC page?

MVC actually defined in two life cycles, the application life cycle, and the request life cycle. The Starting point for every MVC application begins with routing. After that, the received request figures out and finds how it should be handled with the help of the URL Routing Module.

Which handles the initial step in the ASP.NET MVC request life cycle?

Asp.net Routing is the first step in MVC request cycle.


1 Answers

This is one of my favorite links to print out and give to MVC learners:

http://blog.stevensanderson.com/2007/11/20/aspnet-mvc-pipeline-lifecycle/

like image 182
John Farrell Avatar answered Oct 21 '22 20:10

John Farrell