How to change username using mvc4 and simplemembership [duplicate]
问题 This question already has answers here : Is it possible to change the username with the Membership API (7 answers) Closed 6 years ago . Why is it that you can't change a simplemembership username. I've tried MembershipUser memUser = Membership.GetUser(existingUser); memUser.UserName = model.UserName; Membership.UpdateUser(memUser); I get that MembershipUser.UserName is read only. There are no other available methods for changing the username. Is there a way around this problem? Edit: New