FAQ/Questions/How-do-I-use-the-Izenda-Reports-report-email-scheduler.md
... ...
@@ -119,7 +119,7 @@ To test this, go back to a report you wish to schedule and click on it. Click th
119 119
120 120
Scheduled reports only supports per-user security using the Link format. Scheduled attachments will not apply hidden filters normally, but you can apply security through [[PreExecuteReportSet()|/FAQ/PreExecuteReportSet]] based on the security of the report owner. If per-user security is required, the Link format will require the user to login before seeing the report.
121 121
122
-##Saving to Reports to Disk
122
+##Saving Reports to Disk
123 123
124 124
The Scheduler can be used to save reports to disk, if desired.
125 125
... ...
@@ -130,8 +130,7 @@ Here are some basic instructions for setting up this functionality with the Sche
130 130
131 131
From your root, create your SchedulerPage.aspx with code behind, as such:
132 132
133
-csharp'''
134
-
133
+```csharp
135 134
using System;
136 135
using System.Collections.Generic;
137 136
using System.Web;
... ...
@@ -145,7 +144,7 @@ public partial class SchedulerPage : System.Web.UI.Page
145 144
FileScheduler.RunScheduledReports(Response.Output, DateTime.Now);
146 145
}
147 146
}
148
-'''
147
+```
149 148
150 149
How to use:
151 150
* Create a report and schedule it. In this case we need to save to the folder -- so instead of emails specify folders in which to save your report.