3

我正在运行 asp.net mvc,并且自去年四月以来一直在运行。一直以来,我一直在使用 Visual Studio 中的发布功能发布我的网站。本周,我添加了一些 Telerik 脚本和 jquery 1.4 脚本。出于某种原因,当我尝试发布时,它在 jquery 脚本上失败了。所有的 Telerik 脚本都加载得很好,它们都在同一个文件夹中。有任何想法吗?

------ Publish started: Project: Txxx.Sxxx.Web, Configuration: Development Any CPU ------  
Connecting to http://exx-txxx.txxxxx.com/sxxxdev/...  
Publishing folder /...  
Publishing folder App_Data...  
Publishing folder App_Data/Uploads...  
Publishing folder Content...  
Publishing folder Content/2009.3.1320...  
Publishing folder Content/Images...  
Publishing folder Content/Stylesheets...  
Publishing folder DataAccess...  
Publishing folder Helpers...  
Publishing folder Logs...  
Publishing folder Scripts...  
Unable to add 'Scripts/jquery-1.4.min.js' to the Web site.  Could not find a Web server at 'exx-txxx.txxxxx.com' on port 80. Please check to make sure that the Web server name is valid and your proxy settings are set correctly. If you are sure that everything is correct, the Web server may be temporarily out of service.  
Publishing folder Services...  
Publishing folder Views...  
Publishing folder Views/Account...  
Publishing folder Views/Activity...  
Publishing folder Views/AdHocCallReport...  
Publishing folder Views/Doa...  
Publishing folder Views/Fsr...  
Publishing folder Views/Home...  
Publishing folder Views/Report...  
Publishing folder Views/ReqShipment...  
Publishing folder Views/ServiceCall...  
Publishing folder Views/Shared...  
Publishing folder Views/Task...  
Publishing folder bin...  
========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========  
========== Publish: 0 succeeded, 1 failed, 0 skipped ==========  

更新:我实际上将 jquery 文件留在了项目中,但删除了其中的所有内容,它工作正常。当我添加内容时,发布不起作用。

4

1 回答 1

0

我一般建议不要使用内置的发布功能上传到 FTP。它偶尔会遇到 FTP 站点的问题并给出发布失败的错误,但是,它并不是完全失败。由于一个失败的文件,您只会收到失败的消息,但站点的其余部分仍然可以工作。在发布未经修改的原始脚本以及设计师创建的文件和图像时,我发生了这个错误。

我发现使用发布功能发布本地副本或创建包(右键单击解决方案中的 Web 项目)不会那么令人沮丧。一旦所有发布的文件都在我指定的文件夹中,我使用其他一些 FTP 程序上传。

于 2010-01-28T20:55:33.477 回答