<xmod:ReturnLink>
<xmod:ReturnLink> renders a hyperlink that returns the user to the previous list view — same behavior as <xmod:ReturnButton>, just rendered as a link rather than a push-button.
Sibling variants
<xmod:ReturnButton>— push-button<xmod:ReturnImage>— clickable image
Example
html
<xmod:Template Id="Employees">
...
<DetailTemplate>
<h1>[[FirstName]] [[LastName]]</h1>
<div>[[Bio]]</div>
<xmod:ReturnLink Text="« Back to list" />
</DetailTemplate>
</xmod:Template>Properties
| Property | Values | Default | Description |
|---|---|---|---|
| ID | string | Unique identifier for the link | |
| Text | string | Caption displayed on the link | |
| CssClass | string | CSS class name(s) | |
| Style | string | Inline CSS | |
| Width | size | Width of the link | |
| Height | size | Height of the link | |
| ToolTip | string | Hover tooltip | |
| Visible | True False | True | Shows or hides the link |
| OnClientClick | JavaScript | Client-side script to run on click. Returning false cancels the action | |
| AccessKey | string | Keyboard shortcut character | |
| Enabled | True False | True | When False, the link is disabled |
| TabIndex | integer | Tab order for keyboard navigation |
Deprecated Properties (styling)
BackColor, BorderColor, BorderStyle, BorderWidth, Font-*, ForeColor — use CssClass or Style instead.