What are some of the advantages of using one over the other?
|
8
|
|
|
|
|
|
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) 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 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. |
||||||
|
|
|
MVC is much easier to test Web forms are very easy to slap together |
|||
|
|
|
|
Biggest single advantage for me would be the clear-cut separation between your Model, View, and Controller layers. It helps promote good design from the start. |
||
|
|
|
|
Web forms also gain from greater maturity and support from third party control providers like Telerik. |
||
|
|
|
|
In webforms you could also render almost whole html by hand, except few tags like viewstate, eventvalidation and similar, which can be removed with PageAdapters. Nobody force you to use GridView or some other server side control that has bad html rendering output. I would say that biggest advantage of MVC is SPEED! Next is forced separation of concern. But it doesn't forbid you to put whole BL and DAL logic inside Controller/Action! It's just separation of view, which can be done also in webforms (MVP pattern for example). A lot of things that people mentions for mvc can be done in webforms, but with some additional effort. |
||||
|
|
|
If you're working with other developers, such as PHP or JSP (and i'm guessing rails) - you're going to have a much easier time converting or collaborating on pages because you wont have all this ASP.NET events everywhere. |
||
|
|
|
You don't feel bad about using 'non post-back controls' anymore - and figuring how to smush them into a traditional asp.net environment. This means that modern (free to use) javascript controls such this or this or this can all be used without that trying to fit a round peg in a square hole feel. |
||
|
|
|
|
MVC lets you have more than one form on a page, A small feature I know but it is handy! Also the MVC pattern I feel make the code easier to maintain, esp. when you revisiting it after a few months. |
||
|
|
|
My 2 cents:
|
||
|
|
