views:

501

answers:

1

Hello,


I'd like to add ( to CreateUserWizard control ) additional wizard steps after CreateUserWizardStep and CompleteWizardStep, but when clicking on ContinueButton in CompleteWizardStep, instead of being forwarded to next wizard step, nothing happens! What am i doing wrong?


thanx

EDIT:

        <asp:CreateUserWizard ID="CreateUserWizard1" runat="server" 
        oncreateduser="CreateUserWizard1_CreatedUser">
        <WizardSteps>
            <asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server">
            </asp:CreateUserWizardStep>
            <asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server">
            </asp:CompleteWizardStep>
            <asp:WizardStep StepType="Finish">
            uh       
            </asp:WizardStep>
        </WizardSteps>
    </asp:CreateUserWizard>
+1  A: 

Have you edited the Template of the intermdiate wizrd step in your Control. You must also tell the intermediate step about when and show to go to previous step and next step. Can you put some code in this case ? mark-up of your createuserwizrd control ?

this. __curious_geek
I've edited my original post and put CreateUserWizard's markup code in there. Anyways, as far I know CompleteWizardstep doesn't have StepType attribute, so I'm not sure how I could inform it that another step follows and thus it should add Next button so we can proceed to the next step?!
SourceC
ok, can you please elaborate what do you want to do in the intermediate step ?
this. __curious_geek
I assume by intermediate step you are referring to CompleteWizardStep?! I just want it to display confirmation message and then enable us ( by providing Next button ) to continue to the next step
SourceC