自定义模型验证反馈

时间:2011-09-24 16:14:24

标签: asp.net-mvc-3 model-validation user-feedback

我想在nopCommerce Web应用程序中更改验证消息对用户的显示方式。目前看来如此:

enter image description here

我想改变它,以便 如果&当 登录凭据不正确时,输入字段会显示 红色边框 ,并且文本[错误凭据]将设置为输入字段的占位符

我尝试停用代码:

@Html.ValidationSummary(true, T("Account.Login.Unsuccessful").Text)

但是这只是带走了所有验证反馈:(我怎样才能实现上面提到的?我会非常 感谢任何帮助

谢谢。

1 个答案:

答案 0 :(得分:0)

这是完整的更新代码

CSS

.validation-error
{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

使用$ .ajax

检查登录的Jquery代码
$(function () {
        $('#btnLogin').click(function (e) {
            var email = $('#Email').val(); // this your username textbox value
            var password = $('#Password').val(); // this is your password textbox value
            var postdata = 
            {
                "Email": email,
                "Password": password
            };
            $.ajax({

                tyep: 'POST',
                url: '@Url.Action("LogIN","Account")', // your controller action will be called to check for the login details
                data: postdata, // this data you have to post to controller for validation
                success: function(value) { // if ajax call complete, controller action will return boll value true here 
                     if(valeu) {
                    $('#divLoginError').addClass("validation-error"); // this will add class class to your textboxes with red broder
                    $('divLoginError').html('Please check your username / password');
                     }
                  },
                error: function(errorData) // if any error while calling Ajax. this method is gonna call
                {
                    $('#divLoginError').show().html(errorData);
                }
            });

        });
    });