在 vb.net 中以编程方式创建的复选框上的 requiredfieldvalidator
这是我的复选框代码的一部分。
For Each c As Contact In contacts.Entries
counter += 1
tr = New HtmlTableRow
tc = New HtmlTableCell
Dim chkbox As New CheckBox
chkbox.ID = "id_" & counter
tc.Controls.Add(chkbox)
tr.Cells.Add(tc)
接下来
,这将根据从数据库中提取的记录创建 1 到 n 个复选框。在用户方面,我需要他们在单击提交之前检查至少一个复选框。我怎样才能做到这一点?
this is part of code for my checkbox.
For Each c As Contact In contacts.Entries
counter += 1
tr = New HtmlTableRow
tc = New HtmlTableCell
Dim chkbox As New CheckBox
chkbox.ID = "id_" & counter
tc.Controls.Add(chkbox)
tr.Cells.Add(tc)
Next
now this will create 1 to n, checkboxes depending on the records pulled form DB. On the user side, i need them to check minimum one checkbox before clicking submit. howcan i achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用CustomValidator。然后,您可以在服务器端或客户端验证用户是否至少检查了一项。
看看这个答案:stackoverflow:asp-net -checkboxgroup-validate-user-chooses-at-least-one-checkbox
You can use a CustomValidator. Then you can validate on server- or clientside if the user checked at least one.
Have a look at this answer: stackoverflow: asp-net-checkboxgroup-validate-user-chooses-at-least-one-checkbox