vote up 4 vote down star

Are there any obvious productivity gains in developing using webforms or MVC?

flag
When I see WebForms and MVC in a sentence together, I always wonder if MFC is meant instead or if Model-View-Controller is really meant. Even funnier is that, from the answers here, I still can't tell which it is. – orcmid Nov 8 '08 at 18:29

6 Answers

vote up 5 vote down

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.

link|flag
"MVC works much more like my brain does with pretty clear separation of what goes where and why" - I second that, I chunked out code wayy faster almost immediately after 'grogging' MVC. – chakrit Nov 8 '08 at 13:50
vote up 4 vote down

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.

link|flag
it is suppose to be faster! – Kevin Dente Nov 8 '08 at 15:12
vote up 4 vote down

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.

link|flag
so true, it hurts. – chakrit Nov 8 '08 at 13:52
I hear you. WebForms seems quick when you can just drop a grid or control of some sort on a form and hook it up to a datasource. But when you are debugging events and chasing your tail it soon becomes painful. – Craig Nov 10 '08 at 1:29
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.)

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.