Thursday 26 September 2013

Model View Controller

MVC stands for Model-View-Controller. It’s a way of designing an application that separates data access, business logic and the graphical user interface. The goal is to make the application more maintainable.
The Model refers to the data and how it is handled,
the View presents the data to the user and
the Controller interprets the user’s interactions with the View into changes to the Model. 

No comments:

Post a Comment