|
|
What are the Advantages of an MVC-Based Web Application
The ASP.NET MVC framework offers the following advantages:
*
It makes it easier to manage complexity by dividing an application into the model, the view, and the controller.
*
It does not use view state or server-based forms. This makes the MVC framework ideal for developers who want full control over the behavior of an application.
*
It uses a Front Controller pattern that processes Web application requests through a single controller. This enables you to design an application that supports a rich routing infrastructure. For more information, see Front Controller.
*
It provides better support for test-driven development (TDD).
*
It works well for Web applications that are supported by large teams of developers and for Web designers who need a high degree of control over the application behavior.
OR
* Embrace HTTP and HTMLâ€â€ÂÂÂÂÂÂÂÂÂÂÂdon't hide it.
* Testability is built-in from the ground up.
* Extensible at almost every point.
* Total control over your output.
|
|
|