1 / 4
2 / 4
3 / 4
4 / 4

Saturday 1 February 2020

ASP.NET MVC Client request process flow(pattern)

When a client requests came how ASP.NET MVC works? (basic overview)

1st the request goes to the webserver then to the ASP.NET Routing Engine, then the Routing Engine will select the appropriate controller and invoke the action method present on that controller, then it returns(sends) the value to the user through the view. If any database object is required in that method then the controller will pick the Data Object from the model. Model will not give the data from its own side, it is the duty of the controller to pick the data object. then sends the value to the user through the view.
Model has no significance in the MVC framework, but View has to communicate with the model in some cases to know the Data Structure of the database. But in this Model and View communication, no data sharing can happen.




1 comment:

  1. I love the way you incorporated the lyrics into the video. It's so creative and original. Keep up the good work! Subscribe Lyrics on House

    ReplyDelete

If you have any doubts please let me know