Dynamically Replacing the Report Title
You can customize the report title by creating a token to be dynamically replaced when the report is run or exported.
In the global.asax file, find the PreExecuteReportSet method. The code sample is below.
public override void PreExecuteReportSet(Izenda.AdHoc.ReportSet reportSet)
{
reportSet.Title = reportSet.Title.Replace("{test}", String.Format("{0: MMMM yyyy}", DateTime.Now));
}
To use this code sample, simply enter "{test}" into the title field in the Misc tab in the report designer. In the code sample above, the token will be dynmically replaced with the date.