Are there any obvious productivity gains in developing using webforms or MVC?
|
|
|||
|
|
|
No. Personally, I find MVC works much more like my brain does with pretty clear separation of what goes where and why. I banged out a complete prototype commerce site with MVC in a few weeks that would've taken me, I'm sure, at least double that using webforms. |
|||
|
|
|
At this point, WebForms, is more mature. I wish, for example, that validation (client and server side) had better support in MVC. However, I fully expect that, over time, this will improve. The best thing about MVC from my perspective is that MVC makes my code much more testable. I was leaving a lot of code untested with WebForms simply because it was too difficult to test the codebehind. Now I can write unit tests for all my controller logic. Even if it eventually turns out that MVC is somewhat slower (and I'm guessing that it won't be), enhanced testability would make it worth it. Eventually I will recoup that time, since there will be less going back and fixing buggy, untested code later. |
|||
|
|
|
With MVC, you never spend time trying to work out why ItemDataBound and ItemCommand aren't firing when you expect them to. If you think that'll save you time, then MVC is probably for you. |
||
|
|
I find MVC a much more natural fit for web development. As the previous poster has noted, you'll undoubtedly save time by not having to deal with weird bugs thrown up by the web forms page execution lifecyle. Also, the ability to write unit tests for your logic much more quickly (and with a lot less of a reliance on mocks!) is a great advantage. Finally, I've found that it's a lot easier to write css and client script when using the MVC framework as you are able to specify your own IDs on HTML elements. |
||
|
|
|
|
It depends on how you develop. If you're someone who drags controls onto the designer surface, it would probably be hard to ever match that level of rapid development with MVC. On the other hand, if you spend most of your time in source view, you'll probably find that MVC allows you to do so more efficiently. Bringing AJAX into the picture, if you're someone who relies on the UpdatePanel, MVC would probably be unspeakably miserable for you. (This doesn't begin to address the subjective issue of which type of development is more "correct". I don't believe that's the point of this question though.) |
||
|
|
|
|
I think eventually MVC will be the clear winner for Web Developers. However ASP.Net will retain a very important role because there will always be .NET guys that consider themselves web developers who are really .NET winform guys. ASP.NET sans MVC lets you throw stuff together really quickly, but you can easily end up with horrible, terrible, unholy HTML, CSS and javascript. MVC opens the door for wonderfulness but requires a more disciplined approach by developers. |
||
|
|
