vote up 12 vote down star
5

There are lots of articles and discussions about the differences between ASP.NET WebForms and ASP.NET MVC that compare the relative merits of the two frameworks.

I have a different question for anyone who has experience using WebForms that has since moved to MVC:

What is the number one thing that WebForms had, that MVC doesn't, that you really miss?

Edit

No-one has mentioned the WebForms validation controls. I am now working on some code that has a few dependant validation rules and implementing client-side validation for these is proving slow.

flag

11 Answers

vote up 12 vote down check

As a PHP/Classic ASP person, I ventured into webforms world about 5 years ago. After having to handcode things like table grids, calendars, etc, in scripting languages, it seemed like webforms would be a tremendous helping-hand. It was...that is until you need even a slight bit of customization beyond alternating row colors and the like. Yeah, you could have a gridview running with a few drag-and-drop motions. But customizing even what would seem like a simple thing could turn into hours of torture and research.

I also think a lot of the examples given in .NET online are oversimplified for the effect of making webforms look "easy". Sure you can get that gridview to show only 10 records of a 100,000 record table, but do you realize that ALL of the records are being loaded into memory by default? As an example of the over-complicatedness of rectifying that problem, I spent a while creating a pageable gridview that only loads chunks of records, but it wouldn't work. After an hour of research, I found that you had to delete an extra property that the IDE inserts into the codebehind. Not fun when stupid stuff like that sets you behind.

And at every turn, it happens.

Don't even get me started on viewstate.

But then the clouds parted, and .NET MVC was handed to us. Now THAT is a framework. If you are a web developer, you should know whats happening when someone makes a request to your webserver. The abstraction and layer of cruft that webforms put on top of that is a disservice.

For the most part, I'm able to develop applications at the speed of PHP scripting and FINALLY have TOTAL control over the UI. That's what it's all about.

And as an additional note: People need to stop complaining that they are creating "tag soup" in MVC views when they find they have to use <%= %> tags and the like. Drag and drop your gridview onto the page, set all the properties, then view the crap it gives you. And your not nearly done yet, now you have to attach events and put more gridview-related code in your codefile. Talk about messing up the coding experience. I'll take a simple foreach loop anyday.

link|flag
+1! – Andrei Rinea Aug 17 at 7:28
So - you miss the most tinkering around gridview? :) – Arnis L. Aug 17 at 7:37
vote up 0 vote down

Viewstate is the thing i miss - until i remember problems it causes.

Then i bend my mind and look for another approaches (smarter model binding, ajax etc.) which usually turns out to be better (but slower to find & implement).

link|flag
vote up 0 vote down

Well I do miss something :

the ability to have a pageable grid in seconds.

Although it wouldn't be very fair since I also had to create a class to feed to the ObjectDataSource to have an efficient pagination. And also the pagination would work only with the JavaScript on or I would have to write code to read the QueryString (for ex. &pag=2 etc.) and so on.

In fact... I guess there isn't much too miss.

link|flag
Checkout the Grid in MvcContrib. – jfar Sep 16 at 16:02
vote up 1 vote down

As crazy as it sounds, I miss the calendar control. Not for datepickers or that sort of thing, but for scheduling apps where you want to show a full page month-at-a-glance/outlook style events calendar with selectable or clickable links that you inject via the day render event.

If anyone knows of an MVC alternative, please share! Rolling your own in this case is doable, but kind of a pain.

link|flag
vote up 2 vote down

Until now nothing really.

I definitely miss MVC every day at work while I look at the ugly WebForms code I want to wipe it all out and now make everything transparent, clean and beautiful.

Of course only time will show whether the new girl is really better than your old wife.

link|flag
vote up 0 vote down

yes my tools box :S

link|flag
tools box? Can you provide more information? – Richard E Apr 19 at 19:34
1  
in MVC you can't use the controls in visual studio's toolbox :D – Yassir Apr 19 at 19:45
vote up 2 vote down

One difference, which I am sure will be rectified over time, is the expansive amount of reference material and examples online for web forms versus the relatively sparse amount for MVC. However, one could argue that a lot of the material on web forms covers topics such as the page life cycle which MVC no longer makes necessary (thank goodness).

link|flag
That's true. However if you get the book Pro ASP.NET MVC by Steven Sanderson, that somewhat mitigates the issue! – RichardOD Aug 17 at 7:37
vote up 0 vote down

Nothing as well.

WebForms do so much automatically but frequently I had to hack it to suit my needs. MVC let me do what I want and I can hack it to get things done better/faster.

I love to control the output and prefer clean, lightweight style.

link|flag
vote up 2 vote down

The simplicity of having only one form on a page. I think the html form functionality is kind of awkward and not very intuitive and I guess there is a good reason why the webforms creators tried to abstract away form handling in webforms.

link|flag
vote up 6 vote down

I miss the gridview, the simplicity of getting built in sorting and paging in with very little effort. I use grid functionality all the time and have still not found a good alternative in mvc

link|flag
vote up 11 vote down

nothing :)

I really like the way ASP.NET MVC works. I want to control my HTML. I don't need controls. We can get the same functionality with HTML helpers and third party tools, e.g. jQuery and all the available plugins.

Here's an example on how to use a gridview-like with jQuery grid on ASP.NET MVC.

Although Ruby on Rails is a more mature framework, I do think that ASP.NET MVC is on the right track.

link|flag
been using jqGrid a bit over a month now with MVC, works nicely. :) – Tracker1 Apr 19 at 5:26

Your Answer

Get an OpenID
or

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