Chapter 2: Building Web Applications
In This Chapter
Building ASP.NET with Visual Studio
Making use of stylesheets
Working with ASP.NET MVC
There is a lot to web development. People used to ask me what language I programmed in. I told them I was a web developer.
“No, really, what language do you program in?” they would ask.
“Web. It’s seven languages. Seven that I have to know. Criminy, is it really seven?”
At the time, it was seven. I needed to know SQL, VBScript, XML, Visual Basic, HTML, CSS, and JavaScript. At least it is a little better now. You can get by without C++, which was once required. Oh, and C# can replace Visual Basic. The rest. . . .
With Visual Studio in the mix, things are a little easier than they once were. You have two considerations when you choose Visual Studio to be your tool of choice to build a web application. The first is the tool itself. The second is the way you are going to use the tool, or your methodology.
If you’ve been working with the samples in this book, working in Visual Studio is going to feel very familiar. There is a design view for the user interface. The Code Editor works just like the Code Editor in all the other environments. The only ...