Jonny Hollis wrote
Visual Studio feels like Dreamweaver so Visual Studio feels wrong etc...
Does anybody else use a text editor to write .NET?
Visual Studio is a text editor. Or more properly, an IDE - Integrated Development Environment. You don't ever need to use Design View or drag and drop if you choose not to. Most professional programmers that have been working in the field ofr a while (not the Microsoft Certified ones who only learned drag and drop...) rarely use the Design View. Many will use controls they've created, or at least snippets, to do a lot of the development. Underneath the drag and drop interface VS does the same, it just shields you.
Intellisense, when you get used to using it, fills in the rest for you. Debugging is the second major feature in VS that you don't get from any text editors. Personally I work with IIS but the built-in web server for ASP.NET allows many developers to create 90% of their app without a server.
Dreamweaver does great for the look and feel, and can use .NET controls, but it's a designer's tool, not a programmer's. However, if you can master both sides, you're wanted bhy every organization on the planet.
Jeff