如何更改默认错误消息“密码不正确”。在MVC5的管理帐户?

时间:2014-07-22 02:36:45

标签: c# asp.net asp.net-mvc-5

也许这是一个简单的问题,但我已经厌倦了寻找它。

我在AccountViewModels.cs中有这个(这是一个默认的MVC5项目)。

 public class ManageUserViewModel
    {
        [Required]
        [DataType(DataType.Password)]
        [Display(Name = "Current password")]
        public string OldPassword { get; set; }
...

我知道这会使用Data Annotations,但我不知道如何在输入错误的OldPassword时更改默认错误消息,现在的默认错误消息是密码不正确。和我想要换另一条消息,请帮助我。

1 个答案:

答案 0 :(得分:12)

这很简单,不用担心,转到

中的AccountController.cs
 // POST: /Account/Manage
 [HttpPost]
 [ValidateAntiForgeryToken]
 public async Task<ActionResult> Manage(ManageUserViewModel model)
 {

...

改变这个:

if (hasPassword)
{
     if (ModelState.IsValid)
     {
          IdentityResult result = await UserManager.ChangePasswordAsync(User.Identity.GetUserId(), model.OldPassword, model.NewPassword);
          if (result.Succeeded)
          {
               return RedirectToAction("Manage", new { Message = ManageMessageId.ChangePasswordSuccess });
          }
          else
          {
               AddErrors(result);
          }
     }
}

为此:

if (hasPassword)
{
     if (ModelState.IsValid)
     {
          IdentityResult result = await UserManager.ChangePasswordAsync(User.Identity.GetUserId(), model.OldPassword, model.NewPassword);
          if (result.Succeeded)
          {
               return RedirectToAction("Manage", new { Message = ManageMessageId.ChangePasswordSuccess });
          }
          else
          {
               ModelState.AddModelError(string.Empty, "Whatever message do you want to say");
          }
     }
}

就是这样!

编辑:代码审查。