2013-04-04 116 views
2

之一我接收此错误:无法加载文件或程序集“System.Web.DataVisualization”或一个依赖

Server Error in Application. 

Could not load file or assembly 'System.Web.DataVisualization' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.BadImageFormatException: Could not load file or assembly 'System.Web.DataVisualization' or one of its dependencies. This assembly is built by a runtime newer than the currently loaded runtime and cannot be loaded. 

Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Web.DataVisualization' could not be loaded. 

我接收此错误后,我改变的system.web.DataVisualization.dll属性是Copy Local= true,并且这dll也在bin目录中。但错误保持不变。

我该怎么做才能摆脱这个错误。

+0

什么是你的.net版本 – user1659922 2013-04-04 05:23:44

回答

1

您可能想要检查您的项目是否使用了较新版本的.Net(4.0或更新版本)。

目标框架为您的项目性能:在web.config文件的System.Web.DataVisualization

Project properties

1

更改版本项目框架版本。

Ex。

System.Web.DataVisualization, Version=4.0.0.0 

System.Web.DataVisualization, Version=3.5.0.0 

确保更改所有等价物。

相关问题