0

我想更改在我的 nopCommerce Web 应用程序中向用户显示验证消息的方式。目前,它看起来是这样的:

在此处输入图像描述

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

我尝试禁用代码:

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

但这只是带走了所有的验证反馈。我怎样才能实现我上面提到的?

4

1 回答 1

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);
                }
            });

        });
    });
于 2011-09-24T22:02:19.087 回答