如何发布我的网站?

时间:2012-03-27 15:27:55

标签: c# asp.net visual-studio-2010

我有网站MyProject的解决方案。 我需要发布这个网站。 在弹出菜单中,我看到Build Web Site和Publish Web Site

enter image description here

我将我的网站发布到目录并上传到ftp。

但该网站出错:

The directory '/App_GlobalResources/' is not allowed because the application is precompiled.

如何发布我的网站?

更新 我删除了PrecompiledApp.config。

并发出错误

Compilation Error 
 Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. 

 Compiler Error Message: CS0433: The type 'UPSRateServiceWebReference.RateService' exists in both 'c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\d6545937\de1fce5a\App_WebReferences.ixuylfle.dll' and 'c:\windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\d6545937\de1fce5a\assembly\dl3\31691e67\292073b8_400ccd01\App_WebReferences.DLL'

Source Error:


Line 255:
Line 256:        #region PrivateMethods
Line 257:        private RateRequest CreateRateRequest(RateService rate)
Line 258:        {
Line 259:            RateRequest rateRequest = new RateRequest();

2 个答案:

答案 0 :(得分:4)

在Visual Studio 2013中,您应该选中“在发布期间预编译”选项,我这样做并解决了问题。

enter image description here

在您的情况下,您可以尝试选中“允许此预编译站点可更新”

答案 1 :(得分:2)

删除PrecompiledApp.config文件并重新启动您的应用程序。

取自here