在我的ASP.Net網頁項目中,我創建了一個新的Web頁面,然後將一個腳本管理器控件拖到它上面,然後I使用嚮導創建了一個新的rdlc報告,並配置了該數據集(顯示3個字段產品表:ProductName,quatityPerUnit,Price),它開始檢索數據。rdlc report''數據源實例未提供數據源'錯誤
在接下來的步驟中,我插入了一個新的Reportviewer並將其綁定到先前創建的報告,然後再次驗證數據是通過打開dataset1.xsd文件並單擊預覽數據來檢索的。
,這是我的網頁機身碼:
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Font-Names="Verdana" Font-Size="8pt" WaitMessageFont-Names="Verdana" WaitMessageFont-Size="14pt">
<LocalReport ReportPath="Reports\MyRdlcReport.rdlc">
<DataSources>
<rsweb:ReportDataSource DataSourceId="ObjectDataSource1" Name="dsProducts" />
</DataSources>
</LocalReport>
</rsweb:ReportViewer>
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData" TypeName="WebApplication1.dsProductsTableAdapters.ProductsTableAdapter">
</asp:ObjectDataSource>
</div>
</form>
</body>
但是當我運行該項目,我得到了一個錯誤:數據源實例尚未爲數據源「dataSource1」提供,我試圖在網上找到類似的案例,但成功找不到任何東西,請幫忙嗎?
是您的請求遷移報表? – ashveli 2017-02-16 05:06:00