I'm trying to set the StepNavigationTemplate, but it is not working
<asp:CreateUserWizard ID="CreateUserWizard1" runat="server">
<StepNavigationTemplate>
<asp:Button ID="StepPreviousButton" runat="server" CausesValidation="False" CommandName="MovePrevious" Text="Cancel" />
<asp:Button ID="StepNextButton" runat="server" CommandName="MoveNext" Text="I Agree" />
</StepNavigationTemplate>
<WizardSteps>
<asp:WizardStep runat="server" Title="Agree to Terms of Use">
</asp:WizardStep>
</WizardSteps>
</asp:CreateUserWizard>
It does nothing here, but when I put it inside an <asp:WizardStep> it works, but in that it adds the navigation buttons and the previous ones are still there, so it's not at all useful. How is this supposed to be used?