ASP.NET MVC

来源:互联网 发布:python实现dbscan 编辑:程序博客网 时间:2024/06/06 03:02

What is MVC?

MVC is a design pattern, it is not a framework, but Microsoft has adopted MVC to develop its ASP.NET MVC, so you can call ASP.NET as framework.

Why MVC?

1. Separation of Concern. Or loosely coupling. MVC provides better SoC.

2. MVC encourages TDD.

3. Developer can have fully control on HTML, CSS, Javascript by using MVC.

4. Performance. Without web form's view state, server controls, the performance is promoted.