通过 TextChanged 事件回发到文本框后提交表单时,RequiredFieldValidator 不起作用
在我的 .aspx
表单中,我有一个带有 Autopostback=True
的文本框。
我还在它旁边设置了一个RequiredFieldValidator。 但是,当通过文本框的 TextChanged 事件发回时,我的RequiredFieldValidator 出现,但我仍然可以在文本框中没有任何内容的情况下提交表单!
出了什么问题,我该如何解决这个问题?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您必须将文本框的 CausesValidation 属性设置为 true(文本框默认设置为 false)。
You have to set the textbox's CausesValidation property to true (it's set to false by default for textboxes).
为文本框和提交按钮指定相同的验证组。
Give both the text box and the submit button the same validation group.
尝试此代码
并确保
ControlToValidate=""
与
具有相同的名称,最好的方法就在 并且当选项出现时只需按 TAB 按钮 两次
下面>TextBox
字段类型try this code
and make sure that
ControlToValidate=""
has same name as the<asp:texbox/>
hasthe best way to do is just right below
TextBox
field type<asp:Required
and when the options come just pres TAB Button twice