Skip to content

Instantly share code, notes, and snippets.

@radleta
Created October 4, 2009 14:17
Show Gist options
  • Save radleta/201413 to your computer and use it in GitHub Desktop.
Save radleta/201413 to your computer and use it in GitHub Desktop.
protected void SiteCreateUserWizard_CreatedUser(object sender, EventArgs e)
{
// get the newly create user and add custom defaults to the profile data
ProfileCommon userProfile = (ProfileCommon)ProfileCommon.Create(this.SiteCreateUserWizard.UserName, true);
// we need to add'l store the UserId of the user in its profile data so that we can obtain
// it later when using object binding
MembershipUser createdUser = Membership.GetUser(this.SiteCreateUserWizard.UserName);
userProfile.UserId = (Guid)createdUser.ProviderUserKey;
// save the changes
userProfile.Save();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment