Hi there,
No, unfortunately the control cannot do that. As its name implies it can only create users. However, you can do a lot with the API. For example:
Dim myUser As MembershipUser = Membership.GetUser()
myUser.IsApproved = True
Membership.UpdateUser(myUser)
You'll need to create a custom UI to let users edit their details, and then use the API to save the changes.
Hope this helps,
Imar
|