UserRegistration.UserRegistrationWizard_ContinueButtonClick C# (CSharp) Method

UserRegistrationWizard_ContinueButtonClick() protected method

This code is reached after all the steps are completed and the user clicks continue
protected UserRegistrationWizard_ContinueButtonClick ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
    protected void UserRegistrationWizard_ContinueButtonClick(object sender, EventArgs e)
    {
        // user is done, redirect user to homepage.
        Response.Redirect("Default.aspx");
    }