Why one should follow MVC
April 28, 2011 Leave a Comment
In web development, MVC (Model View Controller) design pattern is considered most basic infrastructure for a web project. It does the separation of UI (user interface / presentation layer) from Business intelligence (data processing) and flow of control between User Interfaces and data processing layer. This way one can focus on only one layer and extends/customize it to its limit.
The web projects following this approach are easy to maintain, debug, enhance and test and they are quite extendable. Not only this, one can use different technology for each layer.
to read the full article, visit Why one should follow MVC along with cohesiveness