有没有一种快速方法可以在字段更改后立即清除自定义验证器?
我有一个使用服务器端验证的自定义验证器。
我还有一堆客户端所需的字段验证器,一旦在其中输入内容,这些验证器就会清除。
我想知道是否有某种属性可以在编辑字段后立即清除自定义验证器?
I have a custom validator that uses server side validation.
I also have a bunch of client side required field validators and these clear as soon as something is entered in them.
I was wondering is there some sort of attribute that clears the custom validator as soon as I edit the field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效..
1- 编写客户端验证状态重置函数:
2- 将 CustomValidator 的 ClientValidationFunction 设置为该函数:
3- 请记住将字段名称分配给 ControlToValidate 属性。
That should work ..
1- Write a client side validation status reset function:
2- Set the ClientValidationFunction of your CustomValidator to that function:
3- Remember to assign the name of your field to the ControlToValidate property..