vote up 5 vote down star

I had an argument with one of my friends who is an architect at a pretty large internet company. Basically he was saying that ASP.NET MVC is not for large-scale enterprise applications, that it is not as flexible as WebForms, and that an MVC app will be slower than a web forms app.

From my own experience working with MVC, I can say that it is more flexible and it is lighter weight because there is no page life cycle, viewstate, etc.. It should thus load faster at the very least. As far as I know, MVC is designed for medium to large scale traffic.

What do you guys think? Has anyone compared speed and performance? And is ASP.NET MVC better for large scale apps than ASP.NET WebForms?

In short, between these two choices, which would you choose to use for a large scale enterprise application?

flag

3  
I think you want to revise your last sentence, as both MVC and WebForms are ASP.NET. – John Saunders Jun 23 at 22:44
done thanks for the heads up – mercury22 Jun 23 at 22:48
Still more: did you mean "is ASP.NET MVC better ... than ASP.NET WebForms" – John Saunders Jun 23 at 23:04
oops okay now it should be better – mercury22 Jun 23 at 23:58
1  
mercury - I hope you don't mind, I cleaned up some typos and stuff to make the question more readable. – Mark Brittingham Jun 24 at 0:41

4 Answers

vote up 11 vote down check
  • Development Speed: WebForms
  • Performance Speed: MVC
  • Ease of Use: WebForms (Typically)
  • Unit Testing: MVC (Typically)
link|flag
2  
Ease of Use is subjective. I've seen people who think webforms are easy and those that think MVC is easier. Development Speed I think will stabilize over time as asp.net MVC becomes more mature and supported. – webdtc Jun 23 at 22:57
1  
There, qualified. :P – Spencer Ruport Jun 23 at 23:00
2  
You can unit test web forms applications just as easily as MVC applications if they're created correctly, with proper separation of concerns. We didn't need the introduction of MVC to teach us how to do that. It's just that many ignored unit testing, period. – John Saunders Jun 23 at 23:05
1  
There, another qualifier. – Spencer Ruport Jun 23 at 23:41
I prefer WebForms in general but it really does sound like your friend is pretty clueless. Spencer's got the right answer here - especially with his qualifiers <g>. – Mark Brittingham Jun 24 at 0:36
vote up 1 vote down

this site is a best example of ASP.net MVC's performance ans scaling

some features which I think which is necessary for Enterprise and which MVC provides are

  1. Unit testing - even though it takes time to implement this initially it saves lots of time in the future

  2. Sepeation of Concerns - this really improves development and modification speed

  3. Performance - since both MVC and Webforms use the same ASP.net as the core framework and MVC is lighter and HTTP compliant it give you a better performance

link|flag
2  
All three of these can be achieved using WebForms. – John Saunders Jun 23 at 23:52
I'd really like to know how to do all that in WebForms... – Liao Oct 19 at 1:44
vote up 10 vote down

Sounds like your friend is underqualified for his position.

link|flag
vote up 3 vote down

I think MVC is a lighter framework, and more performant because it doesn't do a lot of the things that the WebForms framework does out of the box, like viewstate for example. I don't think it would be fair to say that MVC is not for larger scale applications, as it probably scales better than WebForms would in terms of performance. In terms of out of the box features, WebForms does more for you because it handles state between posts for you, via viewstate, etc.

I don't have any links to performance comparisons with me, but I would be extremely surprised if there aren't any out there. Even microsoft probably has some.

link|flag

Your Answer

Get an OpenID
or

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