Sub Does Not Fire

Web Programming431
I am using the Club Starter KIT for ASP.net 2.0 as the base for a web site

but I have an instance where a sub is not being executed and I don't

understand why? The related ASP code is as follows:

======================

<asp:CreateUserWizard ID="CreateUserWizard1" runat="server"

DisableCreatedUser="True"



OnFinishButtonClick="CreateUserFinished"

FinishDestinationPageUrl="Default.aspx" Height="240px"

OnCreatedUser="CreateUserWizard1_CreatedUser">



<WizardSteps>



<asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server">



=========================



The user gets created (aspnet_Membership and aspnet_Users get populated) but

the CreateUserFinished sub never gets called? Also, the code in the

completion step (see below) never gets executed. Any thoughts on what might

cause this?



=========================



<asp:CompleteWizardStep runat="server">



<ContentTemplate>



<p>



Your account has been successfully created.



</p>



<gs:rolloverbutton id="ContinueButton" runat="server" commandname="Continue"



text="Continue" />



</ContentTemplate>



</asp:CompleteWizardStep>



===========================


-