Webastor - Programming Tips and Tricks

General Category => General Discussion => Topic started by: Rehan on March 04, 2015, 01:56:20 PM

Title: Why asp.net mvc better than asp.net?
Post by: Rehan on March 04, 2015, 01:56:20 PM
Hi, I wish I had your help to know why asp.net mvc better than asp.net Thank you for answering me please quickly enough.
Title: Re: Asp.net mvc better than asp.net
Post by: Ezra on August 29, 2017, 08:23:53 PM
The main advantages of ASP.net MVC are:

Enables the full control over the rendered HTML.
Provides clean separation of concerns(SoC).
Enables Test Driven Development (TDD).
Easy integration with JavaScript frameworks.
Following the design of stateless nature of the web.
RESTful urls that enables SEO.
No ViewState and PostBack events
The main advantage of ASP.net Web Form are:

It provides RAD development
Easy development model for developers those coming from winform development.