Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi!
I'm trying to change the name and login of a member through the standard .NET Membership API. It is possible to change the email in the following way:
MembershipUser user = Membership.GetUser(); user.Email = email; Membership.UpdateUser(user);
Is it possible / how do i change the name and login of the same member?
Thanks!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Changing the Name and Login of a member through the standard .NET Membership API
Hi!
I'm trying to change the name and login of a member through the standard .NET Membership API. It is possible to change the email in the following way:
MembershipUser user = Membership.GetUser();
user.Email = email;
Membership.UpdateUser(user);
Is it possible / how do i change the name and login of the same member?
Thanks!
is working on a reply...