rdlc报告显示空数据

时间:2014-12-03 10:11:00

标签: c# c#-4.0 rdlc

我需要向我的rdlc报告显示一些数据,但即使我的数据表中有项目,也没有显示任何数据。

        DataTable dt = new DataTable();
        dt = new clsDBFN().rpt_GetData(); //Call to return data from data base


        _reportViewer.Reset();
        _reportViewer.LocalReport.DataSources.Clear();

        ReportDataSource reportDSDetail = new ReportDataSource("DataSet1", dt);

        _reportViewer.LocalReport.ReportPath = "rptData.rdlc";
        _reportViewer.LocalReport.DataSources.Add(reportDSDetail);
        _reportViewer.LocalReport.EnableExternalImages = true;
        _reportViewer.RefreshReport();
        _reportViewer.Visible = true;
        this._reportViewer.RefreshReport();

我从这里引用http://tutorialhouse.weebly.com/reporting,但我必须知道为什么它不起作用

0 个答案:

没有答案