Translate

Monday 26 October 2015

Advantage to using ASP.Net MVC vs web forms

The main advantages of ASP.net MVC are:
  1. Enables the full control over the rendered HTML.
  2. Provides clean separation of concerns(SoC).
  3. Easy integration with JavaScript frameworks.
  4. Following the design of stateless nature of the web.
  5. RESTful urls that enables SEO.
  6. No ViewState and PostBack events
The main advantage of ASP.net Web Form are:
  1. It provides RAD development
  2. Easy development model for developers those coming from winform development.