Archive for December, 2008
Skip complete wizard step in CreateUserWizard
Dec 17th
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");
}
CreateUserWizard automatically login
Dec 17th
Problem:
after login created, user automatically login.
Solution:
Change the property of “LoginCreatedUser” to False
but if you want to have automatically login change it to true ( default value)