Create a new web project, in the Location input field you write http://localhost. But when doing this the web project will be located at the localhost. So if you do it for the next web project, it will override the existing one.
If you want to use IIS instead of the internal web server, you can select the Browse button when you create a new web site, and choose Local IIS.
Another solution is to use the "~" in the path (Will only work for server controls but will later also work for html controls).
Example:
<asp:Image ImageUrl="~/images/image.gif" runat="server"....>
The "~" will be translated to the virtual path. When this control is rendered during the runtime it will be:
/YourVirutalPath/images/images.gif
So by using "~" you don't need to worry about entering the name of the virtual path.
/Fredrik Norm?n NSQUARED2
Microsoft MVP, MCSD, MCAD, MCT
CornerstoneMy Blog, ASP.Net 2.0 etc