gpt4 book ai didi

validation - 如何制作 CheckBoxList 验证器

转载 作者:行者123 更新时间:2023-12-01 07:08:32 25 4
gpt4 key购买 nike

我有 Checkboxlist,但无法为其提供必需的字段验证器或自定义验证器。
它给了我运行时异常。

语言:Vb.net 和 asp.net

最佳答案

使用 jQuery 和 ASP.Net CustomValidator:

function validateCheckBoxList(sender, args) {
args.IsValid = ($("#CheckBoxListId :checked").length > 0);
}

<asp:CustomValidator ID="CustomValidator" runat="server" ErrorMessage="Required!" ClientValidationFunction="validateCheckBoxList"></asp:CustomValidator>

https://jsfiddle.net/t8qj4tqb/

关于validation - 如何制作 CheckBoxList 验证器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2906976/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com