Problem:
Need to skip last step on CreateUserWizard

Solution:
Add the OnActivate="CompleteWizardStep1_Activate" on last step.
here you can add redirect code, for example:


  public void CompleteWizardStep1_Activate(object sender, EventArgs e)
    {
        Response.Redirect("SomePage.aspx");
    }