這裏是SideBarTemplate
爲例:
<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex="2"
OnFinishButtonClick="Wizard1_FinishButtonClick"
OnNextButtonClick="Wizard1_NextButtonClick">
<!-- SidebarTemplate -->
<SideBarTemplate>
<!-- control that put on top of the Step List -->
<asp:Image ID="Image1" ImageUrl="IMG/topimage.jpg" ImageAlign="Top" runat="server"
Width="10" Height="10"/>
<!--Step List will auto generated here-->
<asp:DataList ID="SideBarList" runat="server">
<ItemTemplate>
<asp:LinkButton ID="SideBarButton" runat="server"></asp:LinkButton>
</ItemTemplate>
<SelectedItemStyle Font-Bold="True" />
</asp:DataList>
<!-- control that put below the Step List -->
<asp:Label ID="ButtomLabel" runat="server" Text="Label"></asp:Label>
</SideBarTemplate>
<WizardSteps>
<!-- .....WizradSteps here..... -->
</WizardSteps>