describe in brief.
Why to use ASP.Net MVC?
865
07-Jan-2020
Updated on 07-Jan-2020
Nishi Tiwari
07-Jan-2020Developing application in MVC can have long term benefits such as:
1. Development
2. Testing
3. Maintenance
4. Control over HTML
Development: The web page developed in MVC platform, MVC components such as (Model, View and Controller) must be developed in isolation. Since they are not directly depended on each other.
Testing: The MVC components are not directly depend on each other which makes them easy to test components separately.
Maintenance: All components logic is separated it make it easy for Maintenance in future.
Control over HTML: If you want full control over the HTML that is rendered in the browser and you can afford the development time and overhead to do all of your own markup.