vote up 76 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

33 Answers

1 2 next
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
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 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 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 71 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
show 3 more comments
vote up 14 vote down

It's a subjective topic, of course, but I will try to explain how the other side sees web forms.

The main beef that many ASP.NET developers have with the web forms model is that it attempts to inject state into what should be a stateless application. The idea was to make the transition for VB6 developers as easy as possible -- and it did.

However, along with the ViewState and postback-driven event model came some annoyances. Specifically, large ViewStates in the rendered HTML that affects the performance of the application and an overall lack of control over the rendered HTML. The naming conventions of the server controls also makes it difficult to use Javascript as well.

But most importantly (in my opinion), the web forms is extremely difficult to unit test. Test-driven development (TDD) has become all the rage, and web forms are too tightly coupled. The page lifecycle makes it next to impossible to test how your app handles user input.

link|flag
vote up 7 vote down

I can think of a couple issues that experienced web developer may have problems with.

First, it seems to be designed to allow windows developers to build web apps without having to understand that they're no longer dealing with their familiar technology. This is one of my pet peeves - I've lost it on junior developers more than once for using a "link button" that requires a postback just for basic navigation. Sure, you can get something built, but it won't be any fun for your users.

The whole postback/viewstate/event model seems like a bit of a hack, too. It's great until it stops working, and the tools to trace thru some of the event processing are lacking (or, I'm just missing something). Nothing quite as frustrating as code that should work but doesn't. You might love viewstate, but I bet a lot of your pages are twice the size they should be.

link|flag
1  
This post smacks of developer snobbery - ASP.NET does an excellent job of lowering the learning curve for web developers. This is a good thing. ASP.NET has pros, and it has cons, especially if used irresponsibly. The same can be said for all development environments. – Richard E Dec 9 '08 at 15:00
show 2 more comments
vote up 1 vote down

I'm going to have to agree with what Ryan says as one of the biggest problems I have found with WebForms is that the ViewState / Postback model can sometimes get confusing and get in your way when you are working on something.

I started ASP.NET after working with PHP and ColdFusion at previous jobs and found that it was simple to pick-up due to the similarity to the typical Windows development, but at points in time it behaves in unexpected ways. However, I also think that some of the complaints that you hear might just be due to the learning curve and getting used to do things differently.

link|flag
vote up 4 vote down

The ASP.NET Web Forms model can be seen as going against the grain of the Web since it tries to make web development like Windows forms development, which can make for a pretty leaky abstraction. It makes it easy to forget about the intricacies of the client-server request/response model as well as streaming once-per-request rendering whereas in Windows, you have paint-on-demand (or compose-and-display in WPF).

There's also the classic criticism that it makes it very easty to intertwine logical code with presentational mark-up but ASP.NET MVC isn't without that issue when using WebForms or some of the other templating engines as a View layer.

link|flag
vote up -1 vote down

For me, as a ColdFusion developer learning ASP.NET, web forms just feels completely unnatural.

ColdFusion , PHP, JSP etc all use MVC as their core concept (for the majority of frameworks anyway). The idea of postbacks and a seperate webform per page just doesn't fit right with the development I'm doing. I tend to write apps that consist of various UI components that get arranged in a variety of ways - not so much a variety of screens (if you get what I mean).

For me ASP.NET webforms obviously comes from the same stable as WinForms, it's trying/tried to make web development look and feel the same as WinForms development.

link|flag
show 2 more comments
vote up 8 vote down

Thanks for your responses.

@Ben,

I understand the idea that it tries to make a webpage behave like a winform, and that if you assume that's how it works, you'll screw it up. That's why I started saying that you NEED to understand what's going on. You have to understand HTTP, and use the useful parts of ASP.Net and not the ones that bother. Ultimately, it depends a lot on what you're coding, and it DOES give you the flexibility to choose what to do.

In response to your points:

  • What's wrong with the page lifecycle and the hierarchy? Again, once you've learned it, it lets you do things you can't do in PHP, for example, because you're outputting as you execute down the page (the old ASP model that was good when it got invented, but we're past that now, frankly)

  • Server controls seem like a great abstraction too. They're extremely easy to handle. Would you rather have to output an <input> manually, and concat the value in there? Then read the value manually back from the POST?

  • Javascript postbacks: I'll give you that one. If you want to make a site work without JS, you lose the events model. But you're not in a worse position that you'd be in PHP...

  • Viewstate is another great idea, again, provided you know how to use it. It's much more comfortable than having to manually output and then read hidden inputs.

  • Naming Container is another one of those things I can't really hate. It automatically names my controls and there's no conflict. The ONLY case where this is a problem is if you want to manipulate those through JS, because you don't know in the client what they'll be called. So put a class in them, and use jQuery or Prototype. In the alternative, you don't get the Repeater, which lets you save much more time.

  • Meaningless URLs: URLs are just as controllable in .Net as in any other language, with a rewriting module, which you should be using anyway. Also, I don't see how .Net's URLs are worse than PHP's.

@Kevin,

So again, the model is bad if you try to read a couple tutorials on it and consider yourself an expert. But once you get the handle of it (and it took me 3 months, it wasn't that bad), you can be many times more productive than with any other platform I tried.

I haven't tried .Net MVC, though. But truth is, given what I read, I think you're losing out on a lot of the things that ASP.Net DOES do well.

I do see the point about unit testing, though. And Ill admit that I don't have enough experience with unit tests (ie. never done one) to have an opinion. To me, everything is hard to unit test, as long as there's a UI.

@Chris,

Nope, my pages are not that much bigger than they should. If I had to output hidden input controls myself they'd be even more bloated. Once more, the problem comes with not understanding the model, and believing the marketing idea that you'll just code websites like a desktop app. That IS false, but once you get over it, it's an amazing model.

link|flag
vote up 0 vote down

@Daniel:

You may understand the model, and take the time to do things "right". Sadly, that makes you the exception.

There are too many "developers" who drag-and-drop their way to an ugly, unmaintainable user-hostile mess. While you can mess up in any language/platform, I see more horrible asp.net sites than anything else.

link|flag
vote up 0 vote down

@Chris,

Right, which is why if "some dude" around there blogs about ASP.Net and doesn't like it, I don't really care.

That's why my question started "Why do guys like Jeff Atwood or Joel Spolsky think it's bad?" I mean, those 2 are obviously not "developers" who drag drop stuff... My point being... If experienced people that know their stuff don't like it, there must be some legitimate reasons BEYOND the learning curve.

Unit testing is the only one REAL reason i've been able to find. And technically, in MVC you need to write a controller class. You CAN write that controller class in the web forms model, if i'm not mistaken. I don't think Jeff or Joel will be obsessed about each byte that goes out in their HTML, or the ugly IDs that .Net generates (which again, i've done a lot of AJAX and i've never had a problem with).

link|flag
show 1 more comment
vote up 4 vote down

Rob,

Take a look at this:
http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx

You should be able to radically reduce the size of that viewstate.

link|flag
show 1 more comment
vote up 0 vote down

A little (just a litttle!) offtopic : The link regarding the understanding of the ViewState that Daniel provided is the best thing I've seen to describe the ViewState. Nothing else compares to this.

link|flag
show 1 more comment
vote up 4 vote down

My Opinion: It's all about the leaky abstractions.

All abstractions leak, sure, but the 'quality' of them I believe can be gauged by how much, and how elegantly they do so.

Thinking of a web page as a 'form' is a nice abstraction, but as far as leakiness goes, it's marginally less watertight than the titanic. There are so many places where the forms model causes problems or make things difficult.
And when you do need to get around the forms model, it's ugly and difficult to integrate that code along with your forms code.

That is why the ASP.NET forms model sucks

link|flag
vote up 13 vote down

I keep hearing how WebForms mix the presentation and business logic, but it doesn't force me to do this in my sites. Does it in yours?

There's nothing keeping us from strictly separating our model (DAL), view (ASPX), and controller (BL classes) in the WebForms paradigm.

The fact that many current developers don't is a problem of education, not a problem of the platform. The same developers who poorly implement WebForms are likely to create just as much trouble with unmaintainable MVC tag soup.

No platform can compensate for people who don't know or care about what they're doing.

Also, suggesting that this is an ASP.NET only problem is a mistake. Suggesting that it's caused by too much leaky abstraction is also a mistake. Take a look at some of the (less abstracted) PHP code in popular applications such as WordPress, vBulletin, and phpBB, and you'll never complain about WebForms again.

link|flag
show 1 more comment
vote up 0 vote down
 protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)

For a seazoned developer, the code above will look messy. And for me personally it urges me to refactor everytime I see it.

But if I can pick one root problem with the Webform is that the Internet, the HTTP protocol, even the browsers where not designed to use POST requests as constant postbacks to the same page.

POST requests are just that: POSTs of data to the server. The browser SENDS something to the server, and GET requests means the browser is asking for some data.

The Webform model takes over this and perverts it and uses it in a way that it was not intended. As a result, you get a big hidden __VIEWSTATE in all your pages, you lose the ability to click on the Back button on your browser, and you loose functionality if JS is not enabled on your browser.

It's an abstraction, sure, but it's a bit pulled and twisted and you can see that when you design the app. You can then feel it when you code in it, and eventually you end up Hating it after a few years.

Webforms do a heck of a job in building Windows Forms application on a browsers, but do poorly in building a website or a public webapp.

link|flag
show 3 more comments
vote up 2 vote down

@Radu: The choice to poorly implement any of that functionality is 100% in the hands of the developer. The framework doesn't force you do to anything a certain way.

I've been developing WebForms since the ASP.NET 1.0 beta, and still haven't grown to hate them at all. For example, take a look at the source and functionality of this quickly thrown together site that I made with WebForms.

How big a difference will MVC make for me on that site? Very little, I think.

Additionally, since everything that happens on the site is encapsulated in either the business logic layer or a web service call (that leverages the same BL), it will be easy for me to migrate it to MVC if I wish.

Listening to people on the Internet talk about WebForms, you would think that I was forever stuck with an impossible ball-of-mud. My own experience leads me to believe that it's completely up to the developer, regardless of framework or platform.

link|flag
vote up 1 vote down

@Dave: What I found relevant in this topic is that nobody can come with a respective list of this and that that makes the framework "suck". Some minor gripes,yes, but most of them are nitpicking,let's be honest.

There is nothing you can put your finger on, really, nothing much you can blame. I guess it just feels unnatural to some (as I'm sure MVC might feel to others).

link|flag
vote up 2 vote down

I always question the same thing, I have managed to write large and quite complex web applications using asp.net, and I'm able to have a clear separation of layers, into pieces that are fully testable. I can't be the only one that has figured this stuff out

I do mix it with MVC though, I do have a view and a controller for each control/page on the site, but it all works really well, it's easily extensible (through plugins), testable, etc... I don't get it either

maybe is just a bunch of "experts" that get stuck on something and because it doesn't work their way, then it must suck!

link|flag
vote up 3 vote down

Vanilla ASP.NET has been to a very large degree aimed at RAD (Rapid Application Development), with designers and codegeneration galore - which has shown itself to seriously hurt maintainability and testability.

ASP.NET MVC is an attempt to answer the paradigm shift we´re seeing with respect to practices like agile, TDD etc gaining more and more uptake in the industry.

It is not that we cannot build maintainable and testable applications with ASP.NET, it is just that supporting these practices has not been a priority in the design of the framework, which makes doing it more difficult than it should be.

link|flag
vote up 4 vote down

Re: testability. You can unit test webforms, as well as MVC views, with Ivonna. It turns out that WebForms are much more testable: they have a very clear object graph, while MVC views are just long unstructured strings. On the other hand, since MVC views are just a mess of html mixed with code, and no design time support, there's no guarantee that you even closed your tags properly until you manually open the page. So, testability of the view is important, although nobody has mentioned that.

link|flag
vote up 67 vote down

I'm glad we're talking about this.

It's not so much the model / philosophy of WebForms (being component-oriented, that is) that sucks as it is the implementation. And even that bit is not all bad.

While WebForms definitely merits criticism, I think it's incorrect to jump to the conclusion that MVC is a better / more virtuous concept. It's not. It depends on what you are trying to do.

Regarding the "patterns"

I'm not sure if the WebForms "pattern" has an official name, but let's call it a component framework. There are others, like JSF, which is a bit newer, and could perhaps teach us a few things. Contrast this with MVC, which is not component-oriented. Some people are opposed to componentization. For example, DHH in the rails community (the source of all the recent MVC hooplah), rants against components. However, his justification is more of an appeal to people to re-invent/re-work the wheel every time, because his goal is to make development "so very easy that you will treasure the application-specific solutions of your own rather than long for [components]". It is possible to hack up primitive reusable "components" in MVC. However, the more sophisticated and reusable you make your component, the more hackery you will have to do, because the goal of MVC is simplicity and separation, rather than composition / componentization.

Good Things about WebForms

  • You can compose very sophisticated, nicely encapsulated "controls" that can manage their own state, behavior, and rendering, and combine them into more sophisticated controls
    • Through them, you can accomplish a lot simply through declarative (.aspx) code.
    • For example, you can easily add a date picker that provides both client and server side validation because it has its own lifecycle.
    • Things like GridViews and DataSources - with robust editing, paging, sorting, and filtering capabilities, for example, are a very useful mechanism that couldn't be fully implemented outside of a component-oriented framework.
  • This is largely due to:
    • The component tree and naming containers
    • The page lifecycle - Page_Load, Page_PreRender, etc. enable several hooks that allow the entire view to be composed in one pass, but also modified before rendering in another pass (which is very useful if you are doing anything modular at all)
  • Mechanisms for tracking state (very useful when you need them):
    • ViewState
    • PostBacks (LinkButtons, etc)

Bad Things about WebForms

Again, most of these have to do with how WebForms is implemented.

  • The page / control lifecycle is complex.
  • ViewState is poorly implemented by the components, i.e. the convention of storing every property in ViewState, or that DropDownList doesn't work with ViewState disabled
  • There is no alternative to postbacks. Doing GET / QueryString-based forms is painful. And you can't have more than one <form runat="server">
  • There is no way to override the naming container strategy, which means ugly names for HTML elements
  • WebForms is stale and hasn't gotten many improvements. Probably due to concerns about compatibility, several new controls have been added, but the underlying architecture / mindset hasn't changed much.
  • Much of the framework and controls are mysterious and poorly documented. Plus it's closed source and that means that unless we want to live in Reflector, we are largely stuck with what we get.
  • Binding is horrible. The reflection breaks occasionally, Two-way binding is hard to use and unintuitive. There is no declarative way to bind to the QueryString. So we often spend a lot of time writing mindless binding/plumbing code. (I truly believe that a big reason people like MVC, and why people liked Struts and Rails for that matter, is because they handle binding well.)
  • WebForms is full of tight coupling that makes automated testing very difficult.

Clarifications

  • Regarding the URL-rewriting point, that's just not true. We are doing URL rewriting with WebForms. The .aspx extension is avoidable.
  • That the protocol is stateless is a moot point. It underscores the fact that we have to figure out how to manage state in our applications, and sometimes things like ViewState or PostBacks are the best solution. The flaw in the WebForms mindset is in assuming they are.

I'm hesitant to throw out the baby with the bath-water. We used WebForms for our social media site. We did a PoC in ASP.NET MVC as well, and found that it made a lot more sense to build robust, composable controls that could easily be moved from page to page, than to grapple with the limitations imposed by MVC's simplicity (and, in the case of the ASP.NET MVC framework, immaturity). I would much rather see MS overhaul WebForms, clarify the pros/cons with MVC, open up much of the source, and have the dev community support it as we have the MVC stuff, than for it to continue to be shunned (and neglected) as all of us jump onto the MVC bandwagon.

link|flag
show 4 more comments
vote up 20 vote down

Disclaimer: Junior developer speaking (<3 years).

I researched, printed and studied the whole page lifecycle. At some point I even got it (I think) but I fail to see how the offered features were better then the things you lost because of it.
Because a list was requested, a list is given:

I didn't like asp.net because:

  • controls generate horrible HTML
    • use of tables for lay-out
    • id's are ridiculous
    • unnessary tags
    • inline styling all over the place
    • inline scripting all over the place
    • invented attributee
    • mostly geared towards IE rather then standards
    • creating validating pages is hard
  • no way of altering Html
  • Controls are a blackbox. I like control over my html.
  • dependency on JavaScript
  • generated code is unfriendly to CSS (even the css friendly set)
  • generated code is unfriendly to JS
  • urls shouldn't need rewriting to be usefull
  • bad HTML makes accesability a joke (screen readers, font resizing etc)
  • Postback model makes things statefull
    • hotlinking / bookmarking needs extra consideration to rebuild state somehow
    • viewstate needs tender care to limit bloat (my MVC pages don't have a single hidden control in it)
    • call me picky, but I didn't get why I should tolerate multiple page loads (post back model)
  • Raping the original REST model (without offering the features in an other way)

This doesn't mean I don't have some gripes with MVC either, but that wasn't the question..

link|flag
1  
In my experience invalid HTML never works in all browers. Most (not all) differences in rendering are caused by browsers trying to interpret incorrect code in a way the developers think most suitable. These solutions lead to hacks, hacks lead to anger, anger leads to hate, hate leads to suffering. – boris callens Nov 20 '08 at 1:35
1  
You nailed it on the last line. – Simon Gibbs Mar 11 at 20:53
show 7 more comments
vote up -2 vote down

I haven't played with ASP.NET MVC yet, but I'm looking forward to trying it out and testing with it. That said, I think the main reason Microsoft introduced it was to win over a lot of the open source PHP guys who were more familiar with the traditional model... that plus the fact that IIS7 serves their stuff up quicker!

Anthony ;-) www.codersbarn.com

link|flag
show 1 more comment
vote up 0 vote down

It's a matter of perspective and priorities. Winforms absolutely suck if you have the 'right' set of priorities.

For many of you, you MVC would suck because you would resent having to do extra work just to get the same results. Bah!

Myself, I value separation of concerns and testability over most anything. Following that, I value control. I'm more than happy to spend a bit more time writing things myself because I know that they will work as I intend for them to work. And I don't have to jump through hoops to get controls to render how I want. And I HATE the page lifecycle ... every time I hit a bug that has some rendering dependency on those events I just want to scream "Why? Why am I having to deal with this?"

With MVC, that doesn't happen. I create my data. Good. I render my data. Good. Oh, and I'll handle a post here and there. Good.

link|flag
show 2 more comments
vote up 1 vote down

WebForms are for rapid development. You're free to like it, to use it, to get rich with it. But from there to the point of "Brilliant" there is a big step.

You said everything. When you understand the viewstate and the handlers. In that moment you can see how people can complicate their lives to get to the same point.

Viewstate

In the end is better not to use them, or use them for things you don't care about. Of course you need them to detect changes and execute events. But that's all, you go faster without it.

You have learned that: hey! viewstate is useful but use it carefully (and avoid it if you can). What's next in our list?

Handlers and Modules

The work usually is done through your "Page" extended classes. But you need some specific functionality that smells like these controllers people talk about. So you create a handler for your (let's make it easy) your file type, or process some headers, or even prepare some data for your "Page".

Well, where are now these drag and drop server controls? Where is the viewstate? You're programming more close to the server-client architecture than before. Web forms have disappeared from the map.

In the end

You organise your code, avoid viewstate and create modules and handlers to make your life more easy. Now is when you look at your web forms area, what's useful form there? There is any original control left there?

Does it S...

If it gives you money, perhaps the Brilliant here is you and the next question on stackoverflow should be: How to get rich with ASP.NET WebForms. :)

link|flag
show 2 more comments
vote up 1 vote down

Like Ayende says, it's a leaky stateful abstraction over stateless web.

link|flag
show 3 more comments
vote up -2 vote down

I think the main difference is javascript. In webforms you have server controls that can encapsulate a small bit of functionality, in normal web development (mvc) you have javascript widgets that encapsulate functionality.

It is my opinion that most webforms developers don't know javascript very well and so they they stick with the server side controls. It is also my opinion that doing it in this manner lowers the quality of the end product.

Give me the same project in mvc and webforms and I can guarantee the end result will be better in mvc (and I know webforms fairly well). Don't get me wrong, you can do everything in webforms in the same way you do it in mvc, but there is going to be more friction during development to do so.

link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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