在FastReport导出,例如PDF,Excel,rtf等数据中,并非所有页面都未导出

问题描述 投票:0回答:1

当我以PDF,Excel,rtf等任何格式导出数据时,它正在导出,但是并非所有导出的页面都只导出5页。请帮助我。

WebReport webReport = new WebReport()
webReport.Width = Unit.Percentage(100)
string report_path = Path.Combine(Server.MapPath("~"), "FastReport\\");
System.Data.DataSet dataSet = new System.Data.DataSet();
webReport.Report.Load(report_path + "Transactions.frx");
ViewBag.WebReport = webReport;

在任何选项中都可以导出所有页面。

c# fastreport
1个回答
0
投票

@@ Dhaval Soni,可能您正在使用Fast-Report的演示版。演示版Fast-Report仅允许导出5页,更好的是,您可以使用高级版:https://www.fast-report.com/en/product/fast-report-net/

© www.soinside.com 2019 - 2024. All rights reserved.