自定义验证程序客户端的动态错误消息

时间:2011-03-22 16:51:30

标签: javascript asp.net ajax customvalidator

我使用自定义验证程序调用javascript函数进行验证。我的问题是我需要能够动态更改错误消息。这是代码:

            <asp:CustomValidator ID="CustomValidator1" runat="server" ClientValidationFunction="fcnValid1"
                ErrorMessage=""  Display="None" ValidateEmptyText="True">
            </asp:CustomValidator>

<asp:ValidationSummary ID="ValidationSummary1" runat="server" DisplayMode="List" ShowMessageBox="True" ShowSummary="False" />

    function fcnValid(source, args) {
        var Status = document.getElementById("<%=ddlStatus.ClientID%>").value

        if (Status == "In Underwriting") {
            if (document.getElementById("<%=txtRequestor.ClientID%>").value == "") {
                //sender.errormessage = "Test1"
                //sender.innerHTML = "Test2";
                document.getElementById("<%=txtRequestor.ClientID%>").focus();
                args.IsValid = false;
            }
        }
    }

3 个答案:

答案 0 :(得分:19)

在验证javascript中,您可以通过source

访问该邮件来更改邮件
source.errormessage = "custom message here";

在SO上发现了这个问题,它还应该为您提供更多信息:

How can I rewrite the ErrorMessage for a CustomValidator control on the client?

答案 1 :(得分:10)

source.errormessage 某段时间没有正常工作

我的建议是使用 source.innerText =&#34;错误消息&#34;;

答案 2 :(得分:1)

source.errormessage = "custom message here";