Wizard.FinishNavigationTemplate Property
Assembly: System.Web (in system.web.dll)
[TemplateContainerAttribute(typeof(Wizard))] public: virtual property ITemplate^ FinishNavigationTemplate { ITemplate^ get (); void set (ITemplate^ value); }
/** @property */ public ITemplate get_FinishNavigationTemplate () /** @property */ public void set_FinishNavigationTemplate (ITemplate value)
public function get FinishNavigationTemplate () : ITemplate public function set FinishNavigationTemplate (value : ITemplate)
Not applicable.
Property Value
The ITemplate that defines the content for the navigation area for the Finish on the Wizard. The default is a null reference (Nothing in Visual Basic).Use the FinishNavigationTemplate property to specify the custom content that is displayed for the navigation area on the Finish step of the Wizard control. Define the content by creating a template that specifies how the navigation area is rendered on the Finish step.
The custom content for the template is contained within the FinishNavigationTemplate object. You can add custom content to the FinishNavigationTemplate object either by using template-editing mode in design view or by defining the FinishNavigationTemplate object inline using FinishNavigationTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).
Note: |
|---|
| The FinishNavigationTemplate object that is contained in the FinishNavigationTemplate property must contain two IButtonControl controls, one with its CommandName property set to "MoveComplete" and the other with its CommandName property set to "MovePrevious", to enable the navigation feature. |
To access a control that is defined in a template programmatically, use the Controls collection of the Wizard object. You can also use the FindControl method of the Wizard object to find the control, if the control has an ID property specified.
The following code example demonstrates how to use the FinishNavigationTemplate property to create a custom template for the navigation area of the Finish step for the Wizard control.
Security Note: |
|---|
| This example has a text box that accepts user input, which is a potential security threat. By default, ASP.NET Web pages validate that user input does not include script or HTML elements. For more information, see Script Exploits Overview (Visual Studio). |
Note: