a72a16784bb6d6a3c44e811ee7a7873cbf4b20ef
API/CodeSamples/SaveReportSetNextUrl.md
| ... | ... | @@ -28,7 +28,7 @@ public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig |
| 28 | 28 | |
| 29 | 29 | //Add custom settings below |
| 30 | 30 | public override void ConfigureSettings() { |
| 31 | - AdHocSettings.SaveReportSetNextUrl = ""; |
|
| 31 | + AdHocSettings.SaveReportSetNextUrl = "CustomSave.aspx"; |
|
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | ``` |
| ... | ... | @@ -53,7 +53,7 @@ Public Class CustomAdHocConfig |
| 53 | 53 | |
| 54 | 54 | 'Add custom settings below |
| 55 | 55 | Public Overrides Sub ConfigureSettings() |
| 56 | - AdHocSettings.SaveReportSetNextUrl = "URL-TO-REDIRECT-TO.aspx" |
|
| 56 | + AdHocSettings.SaveReportSetNextUrl = "CustomSave.aspx" |
|
| 57 | 57 | End Sub |
| 58 | 58 | End Class |
| 59 | 59 | ``` |
| ... | ... | \ No newline at end of file |