活动报告中的性能问题

本文关键字:性能 问题 报告 活动 | 更新日期: 2023-09-27 18:12:25

我使用活动报表6来显示报表。如果我们在报告中有很多页面,那么报告将不会显示,直到所有页面都加载。

code :
ActiveReport ar = new ActiveReport();
ar.DataSource = lstDataContainingLargeRecords; // this list contains around 3000 records.
ar.Run();

我想在报告中立即显示第一页,然后在后台加载其他页面。

请给我一些建议。

Thanks in advance

活动报告中的性能问题

您可以尝试使用Run(boolean)方法并将其syncDocument参数设置为true吗?您可以在这里获得代码片段示例。