asp.net 日历控件触发验证控件
我的 asp.net 页面上有一组验证控件,用于验证文本字段中的值。我在同一页面上还有一个日历控件。当我单击日历图像时,会弹出验证控制消息框。单击日历图标时如何避免出现该情况?
I have a set of validation controls on my asp.net page, to validate values in textfields. I also have a calendar control on the same page. When I click on the calendar image, the validation control message box pops up. How can I avoid that from appearing when the calendar icon is clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用验证组,或者如果您不希望它触发验证集 CausesValidation = false
You can either use validation groups or if you don't want it to ever trigger validation set CausesValidation = false
也许尝试将日历控件放入与其他控件不同的 ValidationGroup 中。
如果它不在验证组中并且其他控件也不在验证组中,请尝试为其他控件设置验证组。
Perhaps try to put the calendar control into a different
ValidationGroup
than the other controls.If it is not in a validation group and the other controls aren't either, try to set a validation group for the other controls.