vote up 76 vote down star
54

I've heard Jeff Atwood, Joel Spolsky, and many other legendary people talk about how the ASP.Net Web Forms model sucks. (So this question is kind of directed to them, hopefully Jeff is reading)

Now, I highly respect their opinion, given their background and expertise, but truth be told, I absolutely LOVE ASP.Net. I think the model is brilliant, and it sucks if you have no idea what you're doing, but once you understand how to control ViewState, when to use handlers instead of pages, etc, it is generations ahead of all the other models.

So every time I hear someone complain about how it sucks, I can't help ask the same question...
Why? What is it that's so bad about it?

I appreciate all opinions. I'm assuming there's probably a post at Jeff's blog talking about this too...

flag

33 Answers

prev 1 2
vote up 34 vote down

It does not suck. In many ways MVC is a step backwards. Go ahead, vote me down.

I have been evaluating ASP.NET MVC, and I plan to stick to the current web forms model. I realize that the web forms page lifecycle is sometimes a challenge, and it does not cleanly separate the view and the controller (in a traditional sense), but the purpose of that separation is to enable an entirely different view layer to be created on top of the other layers. For most of us, that is wasted effort.

And I really don't like the tag soup that you get with MVC.

And I really like my ASCX controls to be full-featured components that do more than just render html. I like ASCX controls that are aware of the database and can completely encapsulate their functionality without relying on a complex object model. And I like that they appear as clean xhtml tags to a designer.

link|flag
1  
"the purpose of that separation is to enable an entirely different view layer to be created on top of the other layers" Not strictly true. Having a clean separation of concerns makes it easier to evolve and maintain the application. And then there´s testability as an added bonus. – Fredrik Kalseth Sep 23 '08 at 20:28
5  
Lol @ Tag soup. Lol @ ASCX controls. Tag soup is only a problem if you do more than if/else or foreach. ASCX -> u have RenderPartials .. which are basically the same. Each to their own. Enjoy your WebForms! – Pure.Krome Dec 1 '08 at 4:49
3  
How do you get Tag soup with ASPNETMVC, and not with Webforms?! Webforms badly abstracts away the way the web is supposed to work - nuff said. – Arve Systad Oct 5 at 11:13
1  
"the way the web is supposed to work" according to whom? Use whatever is best for your application and your team. – Ricardo Oct 15 at 2:41
vote up 20 vote down

ASP.NET doesn't "suck" per se; it attempts to address a situation that sucks, viz, interacting with the user over a stateless network barrier, in a way that is transparent not only to the user, but as transparent as possible to the developer.

This approach to the problem reminds me of #3 from Joel's Three Wrong Ideas from Computer Science.

Network software should make resources on the network behave just like local resources.

Ultimately, you just can't get the kind of seamlessness you want in that environment.

link|flag
vote up 41 vote down

I wouldn't say it sucks -- It's really more of a mindset thing. WebForms is great if you're coming from a Windows development background. The same skills are almost directly transferable. You can handle button clicks, etc. with events and delegates and the ViewState / PostbackModel handles all of the complexity for you.

Sometimes, however, the ViewState / Postback model can get in your way and really make things more complicated. That's where the ASP.NET MVC Framework comes in. If you would prefer to be closer to the standard method of Web Development and do not want to deal with ViewState, etc. that is the way. There are numerous other advantages for MVC if you want to seperate concerns / test but I won't get into that here.

Neither is the one true way to develop a website. I prefer MVC but it really depends on the mindset of the developer / team.

link|flag
1  
"WebForms is great if you're coming from a Windows development background." - What you're saying here is that it's great if you don't want to learn the proper way of doing it on the web. The Web is a stateless place, and trying to make a semi-working abstraction above that is just stupid in my opinion. If you're going to develop for the web, learn it. When you've learned it, Webforms is both complex to work with, to understand, and limits you a lot if you want to make quality web apps. – Arve Systad Oct 5 at 11:08
1  
And what's good about the MVC Framework versus Webforms is not the Model-view-controller setup itself, but the fact that it communicates the proper way - totally stateless. It requires no hidden viewstate-values or ugly IDs on your elements! – Arve Systad Oct 5 at 11:11
show 3 more comments
prev 1 2

Your Answer

Get an OpenID
or

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