public ActionResult ChangePassword(ChangePasswordModel model)
        {
            if (ModelState.IsValid)
            {

                // ChangePassword will throw an exception rather
                // than return false in certain failure scenarios.
                bool changePasswordSucceeded;
                try
                {
                    MembershipUser currentUser = Membership.GetUser(User.Identity.Name, userIsOnline: true);
                    changePasswordSucceeded = currentUser.ChangePassword(model.OldPassword, model.NewPassword);
                }
                catch (Exception)
                {
                    changePasswordSucceeded = false;
                }

                if (changePasswordSucceeded)
                {
                    return RedirectToAction("ChangePasswordSuccess");
                }
                else
                {
                    ModelState.AddModelError("", "The current password is incorrect or the new password is invalid.");
                }
            }

            // If we got this far, something failed, redisplay form
            return View(model);
        }
Example #2
0
        public ActionResult ChangePassword(ChangePasswordModel model)
        {
            if (ModelState.IsValid)
            {
                if (MembershipService.ChangePassword(User.Identity.Name, model.OldPassword, model.NewPassword))
                {
                    return RedirectToAction("ChangePasswordSuccess");
                }
                else
                {
                    ModelState.AddModelError("", "The current password is incorrect or the new password is invalid.");
                }
            }

            // If we got this far, something failed, redisplay form
            ViewData["PasswordLength"] = MembershipService.MinPasswordLength;
            return View(model);
        }
Example #3
0
        public ActionResult Manage(ChangePasswordModel model)
        {
            var response = MvcApp.HttpRequest.GetHttpRequest("jsonChangePassword/" + this.User.Identity.Name + "-" + model.OldPassword + "-" + model.NewPassword);
            var changePasswordSucceeded = JsonConvert.DeserializeAnonymousType(response, new { JsonChangePasswordResult = true });

            if (changePasswordSucceeded.JsonChangePasswordResult)
            {
                return this.RedirectToAction("ChangePasswordSuccess");
            }
            this.ModelState.AddModelError("", "Старий пароль не вірний, або нові не співпадають.");

            return this.View(model);
        }