Created
October 4, 2009 14:17
-
-
Save radleta/201413 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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