I am wondering if there is a way to reset password with UserManager of ASP.NET MVC 5
UserManager
I tried this with user that already has a password bu
It is here ASP.NET Identity reset password
UserManager userManager = new UserManager(new UserStore()); userManager.RemovePassword(userId); userManager.AddPassword(userId, newPassword);