I don’t want to show stepname. “Next” and “finish button” is enough for me. How to unvisible these?!
Second question’s; after FinishButton’s click, I want to redirect first step automatically. How to do?
<asp:Wizard runat="server" ID="MyWizard" OnNextButtonClick="MyWizard_NextButtonClick"
Width="440px" Height="200px" OnFinishButtonClick="MyWizard_FinishButtonClick">
<WizardSteps>
<asp:WizardStep ID="Wizardstep1" runat="server" StepType="auto">
</asp:WizardStep>
<asp:WizardStep ID="Wizardstep2" runat="server" StepType="auto">
</asp:WizardStep>
You can create your custom LayoutTemplate within
Wizardcontrol to hide step names. For example:Remeber that placeholders’ id names matter. Placeholer responsible for displaying list of steps that you circled has id
sideBarPlaceHolder(and you should not have any placeholder with this id insideLayoutTemlpate)Second question:
You can have custom navigation template, for example:
Note that these buttons have fixed
CommandName(Wizardcontrol expects this). You can try to use finish button’sOnClickevent to jump to the first step: