我正在部署一个新的网站作为我的主要网站,它的工作很好.
根目录下的所有应用程序都可以工作,除了一个.这是一个遗留系统(c#.net),被大量使用,不幸的是,我无法访问源代码.
当我运行遗留应用程序www.mysite.com/crm我得到以下错误:
Server Error in '/crm' Application. 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: CS0234: The type or namespace name 'Optimization' does not exist in the namespace 'System.Web' (are you missing an assembly reference?) Source Error: Line 17: <pages> Line 18: <namespaces> Line 19: <add namespace="System.Web.Optimization" /> Line 20: </namespaces> Line 21: <controls> Source File: e:\WebSites\newsite\Web.config Line: 19 Show Detailed Compiler Output: Show Complete Compilation Source: Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18446
该错误列出了主站点的web.config,这是有效的.但是,只有当我在主站点下运行应用程序时才会发生.
这是在Server 2008 R2和IIS7上运行
我该如何更正?还有什么可以尝试的?
UDPDATE
我不知道是否有所作为,但Web.Config引用的错误是针对新的网站而不是旧版应用程序.我不知道为什么主站点配置是一个因素.
澄清
我无法访问旧版应用程序的源代码,因此我无法调整该应用程序的属性.将优化dll粘贴到站点中也没有修复它.它可能适用于其他用户,但不适用于我.
工作
我将新站点设置在另一个URL下,并将流量重定向到新URL的根URL,并允许旧应用程序按原样运行,直到我们可以替换它.非常草率的解决方案,但它现在适用.