Home

Wednesday, 6 July 2016

MVC Architecture with Explaination

What is MVC? and How its interact with each other?
MVC Means Model View and Controller.

Model-
Model keep info about data means all business logic available here.

View-
View provides UI (User Interface) to user. by using this user interact with application.

Controller-
Controller handle user input as well as user requested output and it communicated with View as well as Model.

 As above picture user type URL on the browser and request goes to server and call appropriate controller method.after that controller used required View and Model.

No comments:

Post a Comment