我使用自定义验证程序调用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;
}
}
}
答案 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";