Possible Duplicate:
MVC versus WebForms
What are some of the advantages of using one over the other?
Possible Duplicate:
MVC versus WebForms
What are some of the advantages of using one over the other?
Here is a decent explaination of some of the main differences: MVC versus Web Forms
Advantages of MVC Model
Enable clean separation of concerns (SoC) .
Enable full control over the rendered HTML.
Enable Test Driven Development (TDD) (built with TDD in mind).
SEO and REST friendly URL.
Easy integration with JavaScript frameworks.
Support third-party view engines such as NVelocity, Brail, NHaml.
No ViewState and PostBack events.
Follows the stateless nature of web.
Extensible and Pluggable framework.
Ideal platform for Web 2.0 applications.
Advantages of Web Form Model
Provides RAD development.
Easy development model for heavy data-driven LOB applications.
Provides rich controls.
Familiar model for windows form developers.