Hi all,
I'm trying to create normal ASP.Net web application locally using Visual Studio.Net 2003, this work fine as long as I have only the Default Web Site -which have the default port 80- under my IIS root directory, but once I create other web sites under the IIS root using the same port number of the Default Web Site, then Visual Studio will no longer able to create ASP.Net web application and it give the following Web Access Failed dialog:
**************************************
The default Web access mode for this project is set to file share, but the project at
http://localhost/Test can not be opened with path c:\inetpub\wwwroot. The error returned was:
Unable to create Web project "Test", the file path c:\inetpub\wwwroot doesn't correspond to the URL
http://localhost/Test. The two need to map to the same server location. HTTP Error 404: Object not found.
**************************************
Note: In the error dialog it show, It suggest to retry using a different file share path, I have to create "Test" folder under inetpub\wwwroot manually so VS can create the project files under it.
I want to create ASP.Net web application and still keep my current local wed sites with the same port number of Default Web Site, and that's all without any error dialog window.
Any help??