Start Visual Studio and click file and then click new website. Visual Studio creates a number of files and folders for you. You will be able to see following files and folders in your solution explorer.
- Default.aspx
- Default.aspx.cs
- Web.config
- Image folder
- App_code folder
- App_data folder
Default.aspx
This page consist of the html tags and asp tags.
This page consist of the html tags and asp tags.
Visual studio designer adds the necessary html tags and asp tags as you design your web page.
Page derivative
Inherit
- Language
- AutoEventWireUp
- CodeFile
- Inherits
Inherit
Default.aspx.cs
This is the code behind file that has the c# coding that adds the logic required to build the page.
This is the code behind file that has the c# coding that adds the logic required to build the page.
Web config file
App_code folder - can be used to store your entity classes
App_data folder - can be used to store database or data files used in your application
Image folder
Comments
Post a Comment