我正在使用Visual Studio 2010,並安裝了「Microsoft Report Viewer 2012 Runtime」,希望能夠在SQL 2012中測試新的報告系統。之後,我清除了引用「Microsoft.ReportViewer。 WebForms「,並從我的工具箱中刪除了ReportViewer控件,並添加了新版本11 ReportViewer。ReportViewer 11(2012)Visual Studio 2010
我加入了新的控制到測試頁和一個它增加了這個寄存器測試頁:
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
,並將其添加這些條目到Web.config:
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</buildProviders>
<httpHandlers>
<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
</httpHandlers>
<handlers>
<add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</handlers>
工具箱中的控件是版本11的新增功能,但系統一直在嘗試引用版本10版本。此外,當我嘗試編譯它時,我得到錯誤:
The type 'Microsoft.Reporting.WebForms.ReportViewer' exists in both 'c:\Windows\assembly\GAC_MSIL\Microsoft.ReportViewer.WebForms\10.0.0.0__b03f5f7f11d50a3a\Microsoft.ReportViewer.WebForms.dll' and 'c:\Windows\assembly\GAC_MSIL\Microsoft.ReportViewer.WebForms\11.0.0.0__89845dcd8080cc91\Microsoft.ReportViewer.WebForms.DLL'
此修復程序的問題對我來說。我正在使用Azure虛擬機作爲Web應用程序,數據庫服務器是另一個單獨的虛擬機,因此安裝Report Viewer運行時無助,因爲它也需要安裝SQL Feature Pack。我剛剛從另一臺服務器上覆制了Microsoft.ReportViewer.Common文件夾,那裏工作和繁榮 http://ata2931977.blogspot.com/2015/06/running-rdlc-reports-on-azure.html –