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.
Asked
Active
Viewed 2,257 times
7
-
4Does this help? http://www.red-gate.com/products/dotnet-development/ants-performance-profiler/entrypage/be-ahead-of-the-game-poster1 (link to a zipped pdf poster) – mark123 Mar 24 '11 at 18:03
-
I removed the "event" stuff to avoid answers that merely point out that MVC is not WebForms. – tvanfosson Mar 24 '11 at 18:03
-
4@Stefanvds, really? I think desiring a better understanding of when and how things happen in MVC does mean that the person should not be using MVC. – Kirk Woll Mar 24 '11 at 18:04
-
1@mark123 - that's a nice diagram. – tvanfosson Mar 24 '11 at 18:04
-
@mark123 Thanks, but no. For one, it does not mention action filters. Moreover, it doesn't clarify what exact methods are invoked on every step. – Anton Gogolev Mar 24 '11 at 18:06
-
anton, it think it is better to specify your questions. i can answer the action filter stuff. – Stefanvds Mar 24 '11 at 23:18
-
1http://aspnet.codeplex.com/releases/view/58781 - the best documentation. The source code itself. http://blog.stevensanderson.com/2009/02/03/using-the-aspnet-mvc-source-code-to-debug-your-app/ – Linkgoron Mar 25 '11 at 00:22
-
possible duplicate of [Up to date ASP.Net MVC 3 Request-Handling Pipeline Diagram?](http://stackoverflow.com/questions/5541732/up-to-date-asp-net-mvc-3-request-handling-pipeline-diagram) – Paulo Tomé Aug 14 '13 at 00:13
1 Answers
3
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/

John Farrell
- 24,673
- 10
- 77
- 110
-
Thanks, but that's way too old - it's even pre-CTP1 of ASP.NET MVC 1.0. – Anton Gogolev Mar 24 '11 at 18:09