Top (Some Number) Reasons Visual Web Developer Sucks

At work I have to use ASP.NET. As if that weren't bad enough, I have decided to use Visual Web Developer to help me because I don't want to pollute my limited PHP parts of my brain with .NET. VWD sucks. Here are my favorite reasons why it sucks. (I've only been using it for a few weeks - more may come)

<

ol>

  • If you want to show the data from a table on a screen you can just drag/drop the table to the page, edit some things in some wizards and it works. Great! Now, the formatting of the columns is all stupid, but I'm sure the developers said "Well, how should we know how to format the columns". How about using the data type from the datasource? VWD is aware of that because it throws in things like

    Type="Int32"

    to some of the items that it magically inserts for me. So when it sees a "money" datatype, why not format that puppy as a freaking currency string.

  • If you want to format a BoundField you use a DataFormatString to set it. That's fine and well documented. Only problem is, that it doesn't work. Seems that within the first few months of public release, many other people have stumbled upon this problem. So, not only do I have to set the format string I want to use, but I have to set HTMLEncoding to false. It's like walking into a Chipotle, ordering a veggie burrito with black beans, and being asked if you want a hot dog. Dumb.
  • Some people actually pay for this thing. I got the free "express edition" which is aimed at students so it shows you how to spend millions of hours building a gallery friend site application when you could just be like me and use Drupal and spend more time making it cool and less time making the base.
  • It is slow as cuss. It takes a few minutes to open on my work laptop (Dell D600 - fairly high end) and then it takes a few more minutes to start it's internal server for the "test in browser" feature. Is this reasonable? Hell no. I've used a variety of these systems over the years and this thing is the slowest even though it only provides marginal (if any) additional functionality over previous versions.
  • In the various controls you can click off "Enable paging" and "Enable sorting" and "Enable Editing" and it will magically create forms to do these things. But only some of the time. Exactly when and why - it took me a few days and some searching to figure out. You see, they have this system called "smart tags" and when you click on them they will allow you to do relevant operations on the control. This is generally a nice idea, but it's a volatile interface: sometimes the "enable" options are there and sometimes they aren't there. Why? What causes that to happen? After several days of making controls in a variety of different methods I figured out that you have to have a SelectCommand and a DeleteCommand and an InsertCommand and a ... in order for those items to be enabled. And you have to have a unique ID in your select and the query has to be simple to enable paging. Ok, you may say that's a reasonable requirement for programming, but here's where it's not: this thing is supposed to be easy point and click working. A volatile interface doesn't make it easy for me to discover why those items are disabled. Instead, the checkbox should be greyed out and disabled and it should give me a tooltip when I hover on it: "Create a DeleteCommand statement to activate the 'Enable Delete' function". Doyoyoy.
  • PS

    greggles's picture

    I quit the job where I had to use this software. Now I use emacs to edit my php/css/html files. And I'm happy. I'm testing out Zend and Komodo for doing more advanced PHP stuff. I know I could get "more advanced use" out of emacs if I knew it more, but I don't want to know how to ctrl+x ctrl+y ctrl+z Meta+forgotwhatthehellisgoingon in order to do a copy/paste.

    I hate VWD !

    I agree - Visual Web Developer is ok for someone who wants to make a limited number of applications in a hurry (who are these people ?) What really sucks is the limited help and the non-intuitiveness of the controls. For example, I wanted to be able to click a button, store a few values and go to another page - so I looked up help and it threw so much junk at me and effectively nothing showed up except for arcane code strings - what I needed to do was to set the postbackurl but nothing would show up in the search like that.

    The Help completely inundates you with absolutely useless information - that's what you get when you try and build the help system of 6 or 7 products in one interface. God I hate this !

    Don’t agree with you,

    Don't agree with you, perhaps because i don't like PHP, but I think VWD is great tool + it is free.

    point by point?

    greggles's picture

    Can you break down my items point by point? Maybe in the 2.5 years since I wrote this Microsoft fixed some of these bugs. Otherwise I've got to assume that you're besties with someone who wrote it or who just doesn't know what they're talking about because they've never tried another IDE/Web Framework.

    Post new comment

    The content of this field is kept private and will not be shown publicly.
    • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
    • Allowed HTML tags: <br> <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <strike> <h3> <pre> <blockquote> <h2> <div> <p>
    • Lines and paragraphs break automatically.