Interview Question
Qus: What is the advantages in MVC compare to asp.net?
The advantages of ASP.NET MVC over ASP.NET are:
1. Enables the full control over the rendered HTML.
2. Provides clean separation of concerns.
3. Enables Test Driven Development (TDD).
4. Easy integration with JavaScript frameworks.
5. Following the design of stateless nature of the web.
6. RESTful URLs that enables SEO.
7. No ViewState and PostBack events.
Answers (2)
1. Enables the full control over the rendered HTML.
2. Provides clean separation of concerns.
3. Enables Test Driven Development (TDD).
4. Easy integration with JavaScript frameworks.
5. Following the design of stateless nature of the web.
6. RESTful URLs that enables SEO.
7. No ViewState and PostBack events.