我有一个填充的DataTable,我想将它传递给c#中的Report。 在我这样做之前,我在DataGridView中测试DataTable,以确保数据在结果中是准确的,我得到这个:(链接到图像)
http://www.sevakabedi.com/grid.jpg
所以在确保DataTable中的数据正确后,我运行以下代码:
this.reportViewer1.LocalReport.DataSources.Clear();
this.reportViewer1.LocalReport.DataSources.Add(new ReportDataSource("dsReports", dt));
this.reportViewer1.RefreshReport();
我在报告中得到的结果是:
http://www.sevakabedi.com/report.jpg
以下是我的问题:
完整的源代码和数据库脚本可从以下链接获得,您可以下载它:
答案 0 :(得分:0)
答案 1 :(得分:0)
通话日期是固定的。我在rdlc中将文本框格式更改为“d”。 并且DATASET中数据表字段的名称是错误的,我在查询中更改了它的确切名称并且它有效。