Charles Baldo
asked on
Microsoft.AspNet.Identity changhe password whe you do not have current password
I am using the Microsoft.AspNet.Identity library. I want to change a password when I do not know the current password (user forgot)
UserManager manager = new UserManager();
IdentityResult result = manager.ChangePassword(Use r.Identity .GetUserId (), CurrentPassword.Text, NewPassword.Text);
is the anything like
UserManager manager = new UserManager();
IdentityResult result = manager.ChangePassword(Use r.Identity .GetUserId (), NewPassword.Text);
UserManager manager = new UserManager();
IdentityResult result = manager.ChangePassword(Use
is the anything like
UserManager manager = new UserManager();
IdentityResult result = manager.ChangePassword(Use
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER