16 February 2017

Advantages of MVC

1. One of the main advantage is that it will be easier to manage the complexity as the application is divided into model,view and controller.

2. It gives us the full control over the behavior of an application as it does not use view state or server-based forms.


3. It provides better support for test-driven development (TDD).


4. You can design the application with a rich routing infrastructure as it uses a Front Controller pattern that processes Web application requests through a single controller.