我已经在我正在开发的系统上安装了Microsoft Report Viewer 2015运行时,并且它工作的第一天就好了。第二天,它给出了命名空间错误报告的类型。我检查了Reference文件夹,现在在那里列出的两个文件(Microsoft.ReportViewer.Common和Microsoft.ReportViewer.WinForms)上显示一个黄色三角形。我试过重新安装,但无济于事。我需要帮助的人,请。
答案 0 :(得分:0)
您可以从
中选择参考资料C:\ Windows \ assembly \ GAC_MSIL \ Microsoft.ReportViewer文件夹集。
在每个文件夹中有一个用于Common,例如,您将找到3个最新的DLLS:
C:\的Windows \组件\ GAC_MSIL \ Microsoft.ReportViewer.Common \ 12.0.0.0__89845dcd8080cc91 \ Microsoft.ReportViewer.Common.dll
89845dcd8080cc91是公钥标记。
请注意,如果您使用的是Web表单版本,则需要将以下内容添加到Web配置中,因为piblic密钥令牌与Report Viewer 11相同。
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.ReportViewer.WebForms" publicKeyToken="89845dcd8080cc91" />
<bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>