| Term | Definition |
| What is the default page that is displayed in a .NET website? | Default.aspx |
| What is the name of the "window" which allows you to view your project as if it where in the file system? | Solution Explorer |
| What does the App_Data folder hold? | Any data sources that you may have setup for your website. |
| What is web.config? | An xml file that contains configurations for our webapp. |
| By default all web controls are in what is called: | flow layout |
| The code-behind file for Default.aspx is... | Default.aspx.vb |
| The Partial key word in our ASPX page means... | That part of the webpage is defined by the code-behind file and part by the corresponding aspx page. |
| How do you make an event for a control in the application? | By selecting the control and clicking the Lightning bolt in the Properties window. |
| How do you configure the web.config XML file? | Website->ASP.NET Configuration |
| Right clicking MyFirstWebsite and selecting "Add New Item" does what? | Allows you to a new item to your website, like a form or a template, or a stylesheet, or a text file, or a webservice, or a... |
| In the "Add New Item->Visual Studio Installed Templates->Master Page for? | Creating a unified style for your website. |
| What is the "Add New Item->Visual Studio Installed Templates->Web User Control" for? | Allows you to define a web user control that can be defined on multiple pages. |
| What are the "Add New Item->Visual Studio Installed Templates->AJax*" items for? | Allow you to leverage the .NET AJAX Framework in your web applications. |