Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
3  
I think you want to revise your last sentence, as both MVC and WebForms are ASP.NET. – John Saunders Jun 23 '09 at 22:44
done thanks for the heads up – Sergey Jun 23 '09 at 22:48
Still more: did you mean "is ASP.NET MVC better ... than ASP.NET WebForms" – John Saunders Jun 23 '09 at 23:04
oops okay now it should be better – Sergey Jun 23 '09 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 '09 at 0:41

5 Answers

up vote 27 down vote accepted
  • Development Speed: WebForms
  • Performance Speed: MVC
  • Ease of Use: WebForms (Typically)
  • Unit Testing: MVC (Typically)
share|improve this answer
10  
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. – dtc Jun 23 '09 at 22:57
1  
There, qualified. :P – Spencer Ruport Jun 23 '09 at 23:00
6  
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 '09 at 23:05
1  
There, another qualifier. – Spencer Ruport Jun 23 '09 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 '09 at 0:36
show 1 more comment

Sounds like your friend is underqualified for his position.

share|improve this answer
1  
Is this one of those, "I have a friend who ...." , type questions :) – RyBolt Sep 15 '11 at 20:26

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.

share|improve this answer

This site is a best example of ASP.net MVC's performance and 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. Separation 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 gives you better performance

share|improve this answer
3  
All three of these can be achieved using WebForms. – John Saunders Jun 23 '09 at 23:52
1  
I'd really like to know how to do all that in WebForms... – Liao Oct 19 '09 at 1:44
@liao - for the first two points, staying away from putting everything in code behind would be my guess. – user20358 Jun 21 '12 at 10:51

while searching around for answers on which is better I came across this link. I wonder what the MVC framework is now at version 3

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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