vote up 78 vote down star
55

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

35 Answers

prev 1 2
vote up 76 vote down

I'm going to quote from Joey Beninghove's recent PPT posting on his blog.

  • Page Lifecycle
  • Page/Control Hierarchy
  • Server Controls
  • Postbacks javascript: __doPostBack(‘$ctr2785$RepositoryDashboard$hypDownload','')
  • ViewState
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" 
  value="/wEPDwULLT9udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYCBTVjdGwwMCRjdGw..." />
  • INamingContainer
ctl00_ctl00_ctl00_bhcr_ctl01_ctl00_ctl00_ctl02_TitleBarSearchDropDownList
  • Meaningless Urls
http://www.nastyurls.com/tabid/283/Default.aspx

I think he summed it up pretty well.

Basically it boils down to the fact that WebForms is a stateful abstraction over a very stateless protocol. It abstracts reality away from you and produces troves of developers who don't understand the basics of a simple form post. MVC frameworks embrace HTTP and HTML, and thus are much more suited to the web.

link|flag
4  
Huh? So you are saying that the webform model does not embrace HTTP and HTML? How is that? When all is said and done both the webform model and the mvc model will deliver an HTML document via an HTTP request. – lfoulkrod Sep 9 '08 at 16:15
4  
If I understand right, the routing library is available for regular asp.net too now. So I guess nasty urls are out. – boris callens Mar 12 at 9:11
1  
While that's true for my apps, I bet most ASP.NET devs will just ignore it. It's not default, it's not enforced or even encouraged in WebForms... – Ben Scheirman Mar 12 at 21:48
8  
Nah, these things, while they serve a purpose (and that is to perpetuate a flawed abstraction) have gotten in the way in EVERY SINGLE webforms application I have developed. Sure I have benefited from some aspects, but the tradeoff isn't worth it - to me ;). – Ben Scheirman Apr 7 at 14:08
1  
@lfoulkrod he is saying that MVC works with the stateless HTTP protocol rather than against it (WebForms). – Dal Dec 14 at 17:19
show 3 more comments
vote up 8 vote down

One major reason it "sucks" is it's very difficult to unit test (nigh impossible?). There is no separation between presentation and business layers so unit tests have to drive the UI to test other bits. There is NUnitAsp but I've only used it on one project because it's pretty nasty (it's also no longer supported).

link|flag
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
show 1 more comment
vote up 21 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 42 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 4 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.