Sunday, August 1, 2010

Path of the Controller in ASP.NET MVC

Controller is a class compiled in an assembly somewhere

The MVC application uses routing rules that are defined in the Global.asax file to parse the URL and to determine the path of the controller.

The controller then determines the appropriate action method to handle the request.

i.e Routing rule invokes XXX method of the YYYY controller in order to process the request.

No comments: