I`m having some problems with the CreateUserWizard control. I have made a template and everything seems to work fine. When I fill in all the information and click the "create user" button after the postback, it comes back to the registration page with all of the fields still filled in, except password.
When I look at the Umbraco back end I see the user was created and put in the correct group.
createuserwizard not moving on
Hi,
I`m having some problems with the CreateUserWizard control. I have made a template and everything seems to work fine. When I fill in all the information and click the "create user" button after the postback, it comes back to the registration page with all of the fields still filled in, except password.
When I look at the Umbraco back end I see the user was created and put in the correct group.
Any idea whats wrong?
Thank you!
-Elad
You might need a finish step for the wizard.
I have the complete step template set up. I don`t think thats the issue.
Hi Elad,
Clearing HTTP Post Headers will be a good idea. So use this while finishing the step
HttpContext.Current.Response.Redirect(Page.Request.Url.ToString());
is working on a reply...