Is it possible to compare confirm password textbox\'s text with @Html.PasswordFor(model=>model.Password)?
@Html.PasswordFor(model=>model.Password)
@using (Html.BeginForm()) {
change your model to include confirm password variable
[Required] public string Password { get; set; } [Compare("Password")] public string ConfirmPassword { get; set; }