2
private void SetReportSource()
{
    DataTable dt;

    dt = FrmSummaryController.GetSummaryReport();

    this.rptMySummary.Reset();
    this.rptMySummary.LocalReport.ReportPath = "Report.rdlc";
    ReportDataSource rds = new ReportDataSource("dsNewDataSet_Table", dt);

    //this.rptMySummary.LocalReport.DataSources.Clear();
    this.rptMySummary.LocalReport.DataSources.Add(rds);

    this.rptMySummary.LocalReport.Refresh();
}

这是我填充报表查看器的代码。我确信数据表 dt 中有 6 行数据。

报表查看器中仍然没有行和标题。

你能告诉我我做错了什么吗?

4

1 回答 1

0

按着这些次序。并且缺少报告绑定

reportDocument.Load(this.MapPath("crpt_test.rpt"));<br>
reportDocument.Database.Tables[0].SetDataSource(dsReport.Tables[0]);<br>
rptviewer.ReportSource = IT_proj_reportDocument;<br>
rptviewer.Visible = true;<br>
rptviewer.DataBind();<br>

导出为任何文件格式。

于 2013-05-27T09:54:37.023 回答