我正在使用ASP.NET向导控件的布局模板:
<LayoutTemplate>
<div style="position: relative; padding: 10px 10px 10px 10px; overflow: auto">
<div class="wizsidebar">
<asp:PlaceHolder ID="sideBarPlaceHolder" runat="server" />
<div style="clear: both">
<asp:PlaceHolder ID="navigationPlaceHolder" runat="server" />
</div>
</div>
<div class="wizstep">
<!-- Want navigation here... -->
<asp:PlaceHolder ID="WizardStepPlaceHolder" runat="server" />
<!-- ...and here -->
</div>
</div>
</LayoutTemplate>
我希望导航(下一个/上一个按钮)显示在每个步骤的顶部和底部,以及侧边栏中。这可以通过Wizard控件实现,还是必须使用我自己的按钮模仿行为?
答案 0 :(得分:1)
只要您的按钮具有CommandName =“MovePrevious”和CommandName =“MoveNext”,它们就会导致导航