<xmod:ContinueLink>
The ContinueLink tag renders a hyperlink used inside an <AddSuccessTemplate> or <EditSuccessTemplate> — same behavior as <xmod:ContinueButton>, just rendered as an inline <a> element.
xmod: prefix required
ContinueLink is a template tag (it lives inside <…SuccessTemplate>, not inside the form itself), so it requires the xmod: prefix. Use <xmod:ContinueLink> rather than <ContinueLink>.
Example
<AddForm>
...
</AddForm>
<AddSuccessTemplate>
<ItemTemplate>
<h1>Thanks for Signing Up</h1>
<p>Click the button below to go to your profile page.</p>
<xmod:ContinueLink Text="View Your Profile"
Redirect="http://mysite.com/profile" RedirectMethod="Get" />
</ItemTemplate>
</AddSuccessTemplate>Properties
| Property | Values | Default | Description |
|---|---|---|---|
| Text | string | Caption displayed as the link text | |
| AccessKey | string | Keyboard shortcut character (e.g. F for Alt+F) | |
| CssClass | string | CSS class name(s) for styling the control | |
| Enabled | True False | True | When False, the control is disabled (rendered as plain text, not a clickable link) |
| Height | size | Height of the control | |
| ID | string | Unique identifier for the control within the form | |
| OnClientClick | JavaScript | Client-side script to run when the link is clicked | |
| Redirect | URL | URL the user is redirected to. If omitted, the user is returned to the page they would have seen if the success template hadn't been displayed | |
| RedirectMethod | Get Post | Get | HTTP method used for the redirect |
| Style | string | Inline CSS (e.g. color: red; border: solid 1px black;) | |
| TabIndex | integer | Tab order for keyboard navigation | |
| ToolTip | string | Text displayed on mouse hover | |
| Visible | True False | True | Shows or hides the control |
| Width | size | Width of the control |
Deprecated Properties
These properties use ASP.NET inline styling and are no longer recommended for modern web development. Use the CssClass property to apply CSS classes or the Style property for inline CSS instead.
| Property | Values | Description |
|---|---|---|
| BackColor | color name | #dddddd | Background color of the control |
| BorderColor | color name | #dddddd | Border color of the control |
| BorderStyle | NotSet None Dotted Dashed Solid Double Groove Ridge Inset Outset | Border style of the control |
| BorderWidth | size | Border width of the control |
| Font-Bold | True False | Bold text |
| Font-Italic | True False | Italic text |
| Font-Names | string | Font family name |
| Font-Overline | True False | Overline text decoration |
| Font-Size | XX-Small X-Small Small Medium Large X-Large XX-Large or size | Font size |
| Font-Strikeout | True False | Strikethrough text decoration |
| Font-Underline | True False | Underline text decoration |
| ForeColor | color name | #dddddd | Text color of the control |
Property Details
OnClientClick: A JavaScript expression to run when the link is clicked, before the redirect happens. If your script returns
false, the link does nothing further.Redirect: After the click, redirect the user to this URL. If omitted, the user is sent to the page they would have seen if the success template hadn't been shown — typically the page that contained the form.
RedirectMethod: The HTTP method used for the redirect.
Get(the default) appends form values as query string parameters.Postsubmits them as a form POST.