我正在使用XtraReport和AspxDocumentViewer。我写了这些代码来展示。但我总是遇到一些问题;空数据。
如何解决这个问题?我看不出有什么不对。
顺便说一句“dsMast”,它是数据集,有十行。但报告仍然是空的。
{{1}}
答案 0 :(得分:0)
我解决了我的问题。 首先,我为page_load添加了一些代码
if (Session["report2"] != null)
{
ASPxDocumentViewer1.Report = Session["report2"] as XtraReport;
}
然后我使用了thoso代码。
report.DataSource = dsMast;
report.LoadLayout(fpth);
report.CreateDocument();
ASPxDocumentViewer1.Report = report;
ASPxDocumentViewer1.DataBind();
Session["report2"] = report;