System.Web.UI.DataVisualization.Charting.Grid 在 GAC 中存在两次
我已将 Web 应用程序从 .NET 3.5 升级到 .NET 4,但在浏览到使用图表控件的页面时出现此异常:
类型“System.Web.UI.DataVisualization.Charting.Grid”存在于“c:\Windows\Microsoft.NET\ assembly\GAC_MSIL\System.Web.DataVisualization\v4.0_4.0.0.0__..”中.\System.Web.DataVisualization.dll' 和 'c:\Windows\ assembly\GAC_MSIL\System.Web.DataVisualization\3.5.0.0__...\System.Web.DataVisualization.dll'
如何使用 4.0 使其正常工作控制?谢谢。
I've upgraded a web application from .NET 3.5 to .NET 4, and I get this exception when browsing to a page that uses the Chart control:
The type 'System.Web.UI.DataVisualization.Charting.Grid' exists in both 'c:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Web.DataVisualization\v4.0_4.0.0.0__...\System.Web.DataVisualization.dll' and 'c:\Windows\assembly\GAC_MSIL\System.Web.DataVisualization\3.5.0.0__...\System.Web.DataVisualization.dll'
How can I get this working, using the 4.0 control? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
1) 将 web.config 中指向 3.5 图表控件的所有引用升级到引用版本 4:
2) 从 Bin 目录中删除所有图表库,因为它们已包含在 .NET 4 框架中
1) Upgrade all references that point to the 3.5 Chart control in web.config to reference version 4:
2) Remove all charting libs from your Bin directory because they are already included in the .NET 4 framework
您可以使用程序集重定向。
例如(确保
publicKeyToken
正确,我的计算机上没有该程序集):You can use assembly redirection.
For example (make sure the
publicKeyToken
is correct, I don't have the assembly on this computer):删除其中之一,一个在 GAC 中,一个在您的项目中(我猜)。
也许你的项目中有一个你使用后留下的参考。 NET 3.5?或者其他使用它的 DLL:=)
Remove one of them , one is in the GAC and one is in your project i guees.
Maybe you have a reference in your project that is left after you used. NET 3.5? Or other DLLs that use it: =)