MVC 2.0 application execution process is handled through?
-
UrlRoutingModule
-
Page Event
-
a or b
-
None of the above
A
Correct answer
Explanation
The UrlRoutingModule is an HTTP module that examines incoming requests and matches them against registered route tables. When a match is found, it extracts route data and passes control to the appropriate MvcHandler. Web Forms uses page events; MVC uses a completely different routing pipeline.