<xmod:ContinueImage>

The ContinueImage tag renders as a clickable image at run-time. It is only valid within an <AddSuccessTemplate> or <EditSuccessTemplate> tag. 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:ContinueImage
    AccessKey="string"
    AlternateText="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"     ImageAlign="NotSet|Left|Right|Baseline|Top|Middle|Bottom|AbsBottom|AbsMiddle|TextTop"
    ImageUrl="url"
    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:ContinueImage AlternateText="View Your Profile" Redirect="http://mysite.com/profile" RedirectMethod="Get" ImageUrl="~/images/profile.gif"/>
</AddSuccessTemplate>
Back to top