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.

Can I change the report Title dynamically?

Expand / Collapse
 

Can I change the report Title dynamically?


Yes, the report attributes can be changed in the PreExecuteReportSet method, most of the attributes for a report are available there.  To change the title of the report dynamically add this to the Global.asax PreExecuteReportSet:

public override void PreExecuteReportSet(Izenda.AdHoc.ReportSet reportSet)
{
  reportSet.Title = "Some Title";
}//end PreExecute


This method executes when a report is created to be exported or viewed. At this point, the xml from the actual report file has been parsed and loaded, so changes made here will not be permanent.



Details
Type: FAQ
Options