Guides/Timeouts.md
... ...
@@ -27,7 +27,7 @@ Sets the time Izenda Reports will wait for an Oracle command to execute before t
27 27
```csharp
28 28
AdHocSettings.OracleCommandTimeout = 5000;
29 29
```
30
-##Preview Timeout
30
+##[Preview Timeout](http://wiki.izenda.us/API/CodeSamples/PreviewTimeout)
31 31
32 32
Sets the minumum time Izenda Reports will wait for a MS SQL command to execute before timing out.
33 33
... ...
@@ -41,16 +41,16 @@ Gets or sets the time span for schema caching.
41 41
```csharp
42 42
Izenda.AdHoc.AdHocSettings.SchemaCacheTimeout = new TimeSpan(0, 0, 5, 0);
43 43
```
44
-##SQL Command
44
+##[SQL Command](http://wiki.izenda.us/API/CodeSamples/SqlCommandTimeout)
45 45
46 46
Gets or sets the wait time in seconds for database command dropdown values loading.
47 47
48 48
```csharp
49 49
AdHocSettings.SqlCommandTimeout = 1000;
50 50
```
51
-##Data Source Drop Down
51
+##[Data Source Drop Down](http://wiki.izenda.us/API/CodeSamples/DataSourceDropDownTimeout)
52 52
53
-Gets or sets the timeout between starting loading dropdown values (in the DataSources dropdown at the Data Sources tab in the ReportDesigner) from server and redirecting to About page.
53
+Gets or sets the timeout between starting loading dropdown values (in the DataSources dropdown at the Data Sources tab in the ReportDesigner) from server and redirecting to About page. This setting is deprecated.
54 54
55 55
```csharp
56 56
AdHocSettings.DataSourceDropDownTimeout = 10;