Izenda, LLC

Ad Hoc Reports & Dashboards for ASP.NET Apps

Free Trial

Izenda Reports is licensed on a "per user" or "per server" basis. Please complete this form to receive a price quote.

All fields are required.

The live demo demonstrates Izenda reports with the Northwind Sample database. To login, please register below.

All fields are required.

Please register to try Izenda reports on your data today.

All fields are required.

Export Limit

Expand / Collapse
 

Export Limit


Izenda Reports easily works with databases having thousands, millions, or billions of rows.  By default Izenda reports will not limit exports. This code will limit the exports to a certain number of rows if it is needed for security or performance reasons:
public override void PreExecuteReportSet(Izenda.AdHoc.ReportSet reportSet)
            {
            foreach (Report r in reportSet.Reports.AllValues)
            {
                r.Top = 10000;
            }
            }

The "show all" setting and "show all in viewer" settings will need to be set to false.



Details
Type: FAQ
Options