zoukankan      html  css  js  c++  java
  • VS.NET 2003 Error The project you are trying to open is a Web project. You need to open it by specifying its URL path.

    I'm working on a build server at the moment, and in the process of moving folders around, I keep getting this error in Visual Studio.NET 2003 when the location of a web project within a solution does not match the URL on the local machine. 

    To fix this error all you need to do is add a webinfo file.  If your using VSS for source control, it's probably a good idea to add the webinfo file to SourceSafe as well as this is not done for you automatically.

    If you have a project file c:\Inetpub\wwwroot\Folder\fred.csproj then you need a corresponding webinfo file fred.csproj.webinfo.  The contents of the webinfo file looks like this:

    <VisualStudioUNCWeb>

        <Web URLPath = "http://localhost/Folder/fred.csproj" />

    </VisualStudioUNCWeb>

    When you go to add this web project to your solution file you actually don't specify “Add Existing Project From Web”, but simply “Add Existing Project”, then browse to c:\Inetpub\wwwroot\Folder\fred.csproj

    For some background information on this problem you might want to have a look at Web Projects and Source Control Integration in Visual Studio .NET or Team Development with Visual Studio .NET and Visual SourceSafe

    Here is an extract:

  • WebInfo files (*.csproj.webinfo or *.vbproj.webinfo). This file keeps track of a project's virtual root location. This is not added to source control to allow individual developers to specify different virtual roots for their own working copy of the project. While this capability exists, you and all team members are recommended to use a consistent (local) virtual root location when you develop Web applications. The recommended structure for Web and non-Web applications is discussed in Use a Consistent Folder Structure for Solutions and Projects.
查看全文
  • 相关阅读:
    360浏览器自动填写用户名和密码、下拉框解决办法
    实用JAVA工具类网站
    JQuery中ajaxSubmit,在ie或360兼容,提交后台不能获得参数
    java中形参的可变参数的定义(如String... args) .
    用sqldeveloper连接数据库
    ORA-12541:TNS:无监听程序问题
    小工具:生成半透明背景色的 CSS 代码,不影响子元素透明度
    JQuery使用小结
    ajaxSubmit 在ie9或360兼容中,form下是空的
    ajax 跨域请求数据 jsonp 示例
  • 原文地址:https://www.cnblogs.com/yuxiang9999/p/483444.html
  • Copyright © 2011-2022 走看看