Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialMohammed Al Munif
Courses Plus Student 91 PointsReset password not sync in database after change using identity in MVC
Hi Team,
I have an issue with reset password not sync in database after changing using identity in MVC, below i past my http post
[HttpPost] [AllowAnonymous] [ValidateAntiForgeryToken] public async Task<ActionResult> ResetPassword(ResetPasswordViewModel model) { if (!ModelState.IsValid) { return View(model); } var user = await UserManager.FindByNameAsync(model.Email); if (user == null || user.EmailConfirmed) { //// Don't reveal that the user does not exist return RedirectToAction("ResetPasswordConfirmation", "Account"); } var result = await UserManager.ResetPasswordAsync(user.Id, model.Code, model.Password); if (result.Succeeded) { return RedirectToAction("ResetPasswordConfirmation", "Account"); } AddErrors(result); return View(); }
1 Answer
Mohammed Al Munif
Courses Plus Student 91 PointsI find out the issue with my condition
if (user == null || user.EmailConfirmed)
I remove || user.EmailConfirmed after that i got password updated successfully in database.
Thanks Mohammed