Documentation for this section has not yet been entered.
Use the Wizard.SideBarTemplate property to specify the custom content that is displayed for the sidebar area on a System.Web.UI.WebControls.Wizard control. Define the content by creating a template that specifies how the sidebar area is rendered.
The custom content for the template is contained within the Wizard.SideBarTemplate object. You can add custom content to the Wizard.SideBarTemplate object either by using template-editing mode in design view or by defining the Wizard.SideBarTemplate object inline using SideBarTemplate tags. The content can be as simple as plain text or more complex (embedding other controls in the template, for example).
The Wizard.SideBarTemplate object must contain a System.Web.UI.WebControls.DataList control or System.Web.UI.WebControls.ListView control whose System.Web.UI.Control.ID property is set to "SideBarList" to enable the sidebar navigation feature. Also, the "SideBarList" on the System.Web.UI.WebControls.DataList or System.Web.UI.WebControls.ListView control must contain an System.Web.UI.WebControls.IButtonControl control.
To access a control that is defined in a template programmatically, use the CompositeControl.Controls collection of the System.Web.UI.WebControls.Wizard object. You can also use the erload:System.Web.UI.Control.FindControl method of the System.Web.UI.WebControls.Wizard object to find the control, if the control has an System.Web.UI.Control.ID property specified.