Microsoft 9GD00001 Computer Accessories User Manual


 
252 Microsoft Visual Studio 2010: A Beginner’s Guide
you have the option to choose Yes or No. Choosing Yes will add a unit testing project to
the solution. You can choose either option, which won’t matter right now because we’ll not
be covering this topic here, but it is definitely worth exploring on your own. Figure 9-2
shows the new project in Solution Explorer.
VS created several folders with working code:
The Model, View, and Controller folders hold code for the MVC Models, Views, and
Controllers, respectively.
Previous chapters already explained the purpose of the Properties and References folders.
The App_Data folder is designed to allow you to ship a local database with your application
and is ideal for small programs where you can use the free SQL Express database. See
the accompanying note to learn how to add a database in the App_Data folder.
The Content folder is where you add any Cascading Style Sheets (CSS) files. CSS is a
standardized language for defining layout and appearance of a Web site.
Figure 9-2 A new ASP.NET MVC project