Thursday, June 13, 2013

complete flow of MVC

  • All end user requests are first sent to the routing in global.asax
  • Then All requests are sent to the controller.
  • The controller depending on the request decides which model to load. The controller loads the model and attaches the model with the appropriate view.
  • The final view is then attached with the model data and sent as a response to the end user on the browser.

No comments:

Post a Comment