Understanding Flow of MVC

 First request will come to controller, controller will get data from Model( if there is a code to do so), after getting data from model, this data will be sent to view by the controller.

Model will never talk to view, controller will always act as bridge between these two guys

Comments

Popular posts from this blog

Understanding Collection and Object Initializer

How to execute Javascript in VS code