Tuesday, 30 June 2015

What are the benefits of using MVC (.Net)?

Benefits of using Model View Controller:

                  1. Separation of concerns is achieved as we are moving the code-behind to a separate class file. By moving the binding code to a separate class file we can reuse the code to a great extent.

                  2. Automated UI testing is possible because now the behind code has moved to a simple .NET class. This gives us opportunity to write unit tests and automate manual testing.

No comments:

Post a Comment