Sunday, September 16, 2018

What are the advantages of ASP.NET MVC

Q.What are the advantages of ASP.NET MVC 
Answer: 
Multi view support
Due to the separation of the model from the view, the user interface can display multiple views of the same data at the same time.

Separation of Concerns
Separation of Concerns is one of the core advantages of ASP.NET MVC .Since code-behind concept has been removed from MVC
The MVC framework provides a clean separate logic for the UI, Business Logic, Model or Data.This feature enable code re-usability.

More Control
The ASP.NET MVC framework provides more control over HTML, JavaScript and CSS than the traditional Web Forms.

Testability Is Easy
ASP.NET MVC framework provides better testability of the Application and good support for the test driven development too.

Lightweight
ASP.NET MVC framework doesn’t use View State and thus reduces the bandwidth of the page.

0 comments:

Post a Comment