Don’t be daunted by the many forms and windows around your screen—each
has something to offer! Visual Web Developer is very flexible, so you can resize,
relocate, or regroup the interface elements that appear. We’ll spend the next few
pages taking a brief tour of these windows, though we’ll discover even more as
we progress through the chapters of this book.
The Solution Explorer
The Solution Explorer, which by default is located in the upper right-hand part
of the Visual Web Developer window, provides the main view of your project,
and displays the files of which your project is composed. As Figure 5.5 shows,
the root node is the location of your project; beneath the root node you can see
that Visual Web Developer has already created other elements for you.
Figure 5.5. The Solution Explorer
The files that are created for you will differ depending on the type of project
you’re working on, and the language you’ve chosen. If you’re using C#,
Web.config won’t appear in your list. Don’t worry—we’ll create this file later.
Let’s review the functions of the three child nodes shown in Figure 5.5:
❑
App_Data is a special folder that ASP.NET uses to store database files. You’ll
learn more about this folder in Chapter 13.
❑
Default.aspx is the default web form that Visual Web Developer creates for
you. If you look closely, you’ll see that you can expand the Default.aspx
node by clicking the + sign to its left. If you expand the node, you’ll find a
code-behind file named Default.aspx.vb, or Default.aspx.cs, depending
on the language you selected when you started the project. Visual Web Deve-
loper can work with web forms that use a code-behind file, as well as with
those that don’t.
149
Meeting the Features