|
SessionAutoKeepAlive | | When "True", the session remains alive for as long as the browser is open. This is done by automatically "pinging" the server from the browser, thus informing the server that the browser is still open. Once the browser closes, the server-side session times-out after some period.
The default is "False".
|
SessionEndedUrl | | The browser redirects to the SessionEndedUrl once the session ends.
Set this to a URL showing the user that the session has timed out.
The default is rdLogout.aspx. |
SessionKeepAliveCaption | | SessionKeepAliveCaption is the text for the button warning popup. Clicking the button keeps the session alive.
The default is "Continue the Session". |
SessionKeepAliveCaptionClass | | SessionKeepAliveCaptionClass may be used to set the style of the SessionKeepAliveCaption text.
|
SessionWarningCaption | | SessionKeepAliveWarning is the text for the warning popup.
The default is "Your session will automatically end soon." |
SessionWarningClass | | SessionKeepAliveWarningClass may be used to set the style of the SessionKeepAliveWarning text. |
SessionWarningDuration | | SessionWarningDuration sets the amount of time the warning popup remains displayed before the user is redirected to the SessionEndedPage.
The value is minutes.
The warning popup appears 2 minutes before the session timeout period minus the SessionWarningDuration. For example, if the session timeout is 20 minutes and SessionWarningDuration="3", the warning popup appears after 15 minutes of inactivity.
The default is 3 minutes.
|
TemplateModifierFile | | Some elements employ a definition file as a template. The definition contains language and culture specific Caption attributes that you may want to change. Or you may simply want to change the captions to better suit your application.
The TemplateModifierFile is an XML file with elements pointing to other elements in the template to be changed. All other attributes get applied in the template.
For example, the Dashboard2 element has a template file (rdTemplate\rdDashboard\rdDashboard2Template.lgx) several Label elements. One has an ID="lblAddPanelsTitle". The Caption can be changed with the following XML in the TemplateModifierFile:
You can set attributes for any number of elements. Examine the template file to learn the ID and Caption attributes you may want to modify.
The above example shows how to identify template elements with an ID attribute. Alternatively, you can also identify elements with an XPath expression. In this example, we change an attribute of the InteractivePaging element:
For a more detailed list of modifier actions see the following DevNet article.
TemplateModifierFiles can be in any folder accessable to the web application. When a directory location is not specified, the default location is the _SupportFiles folder.
|