ASP.NET & Visual Studio .Net 2003 - File Structure How to create new ASP.NET Web Application file in Visual Studio .NET 2003
ShotDev Focus:
- Visual Studio .NET 2003 (Create new a file)
Visual Studio .NET 2003
Start -> Programs -> Microsoft Visual Studio .NET 2003 -> Microsoft Visual Studio .NET 2003
Main screen ASP.NET Application.
.
.
How to add ASP.NET Web form.
Right click on current project and click Add Web Form…
Select item Web Form and input Name of file.
The file was added successfully (.aspx and .aspx.vb)
.
.
How to add Web User Control
Right click on current project and click Add Web User Control…
Select item Web User Control and input Name of file.
The file was added successfully (.ascx and .ascx.vb)
.
.
How to add Class file.
Right click on current and click New Folder…
Rename a folder.
Right click on current and click Add Class…
Select item Class and input Name of file..
The file was added successfully (.vb)
.
.
.