ASP.NET MVC: Request Processing


ASP.NET MVC is really a great framework for building web based enterprise applications. However it is really important that we first understand how exactly it processes the request as there is a lot of emphasis of Convention over Configuration.

Below diagram will give the clear picture of how the HTTP Request is processed within ASP.NET MVC Framework.

 

image

This framework is very effective in implementing separation of concerns and intern helping in implementing Unit Testing for the application. Lets talk about this in subsequent blogs while covering some important aspects of the ASP.NET MVC framework.