For this reason, the remainder of the ASP.NET posts, unless otherwise noted will be using blank ASP.NET website projects.
To create a blank ASP.NET website project, open Microsoft Visual Studio and follow these steps:
- Click the "File" menu option on the main menu
- Click the "New" sub-menu option
- Click the "Web Site..."
The "New Web Site" dialog. |
- File System
- This creates a website on your local file system. Such as C:\Websites. These website are not available to the actual Internet via IIS or other server technologies, unless you create a virtual directory pointing to them.
- HTTP
- These are IIS websites located on the local computer, or a remote computer.
- FTP
- These are websites that you connect to with FTP. You will need to provide credentials to access the FTP server.
When selecting the project template, choose "ASP.NET Empty Web Site". This will create a blank ASP.NET project where you can add your own web site components.
Microsoft has an example project that you can play around with if you choose "ASP.NET Web Site"
No comments:
Post a Comment