<xmod:ContinueButton>

The ContinueButton tag renders as a push-button at run-time. It is only valid within an <AddSuccessTemplate> or <EditSuccessTemplate>. When clicked, the user is returned either to the page that would have been displayed after successfully submitting the form or to the URL specified in the Redirect attribute.

Syntax

<xmod:ContinueButton

        
    AccessKey="string"
    BackColor="color name|#dddddd"
    BorderColor="color name|#dddddd"
    BorderStyle="NotSet|None|Dotted|Dashed|Solid|Double|Groove|Ridge|Inset|Outset"
    BorderWidth="size"
    CssClass="string"
    Font-Bold="True|False"
    Font-Italic="True|False"
    Font-Names="string"
    Font-Overline="True|False"
    Font-Size="string|Smaller|Larger|XX-Small|X-Small|Small|Medium|Large|X-Large|XX-Large"
    Font-Strikeout="True|False"
    Font-Underline="True|False"
    ForeColor="color name|#dddddd"
    Height="size"
    OnClientClick="string"
    Redirect="url"
    RedirectMethod="Get|Post"
    Style="string"
    TabIndex="integer"
    Text="string"
    ToolTip="string"
    Visible="True|False"
    Width="size"
/> 
 

Remarks

Back to top

Example

<addform>
  ...
</addform>
  
<AddSuccessTemplate>
  <h1>Thanks for Signing Up</h1>
  <p>Click the button below to go to your profile page</p>
  <xmod:ContinueButton Text="View Your Profile" Redirect="http://mysite.com/profile" RedirectMethod="Get" />
</AddSuccessTemplate>
Back to top