本文介绍了自定义验证程序仅在数据存在时触发OnServerValidate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个带有自定义验证器的文本框,该文本框对该文本框使用OnServerValidate 方法。这样可以正常工作,但是在单击提交按钮后,当该文本框中存在数据时,该方法仅执行 。如果我 点击提交按钮,文本框中没有数据, OnServerValidate方法不会触发。 我每次单击Submit 按钮时,都要执行OnServerValidate方法。我也愿意接受另一种方法的建议 来验证控件。我无法使用RequiredFieldValidator,因为Web表单中其他文本框中的数据确定有问题的文本框是否应包含数据。这有点复杂,因此使用了 自定义验证器。 如果有人有任何建议,我很乐意听到它们。 谢谢, -Rigs 解决方案 OnServerValidate 在单击Submit按钮后该文本框中存在数据时才执行 单击提交 因为中的文本框是否 > blockquote class =post_quotes>自定义验证器。 如果有人有任何建议,我会爱听取他们的意见。 谢谢, -Rigs 无论控件中是什么,每次都会触发 OnServerValidate 执行 如果单击提交按钮并且文本框中没有数据, OnServerValidate方法不会触发。 我希望OnServerValidate方法每次都执行 单击提交 因为中的文本框是否 。 如果有人有任何建议,我会爱听取他们的意见。 谢谢, -Rigs Hi, I have a textbox with a Custom Validator that utilizes the OnServerValidatemethod for that textbox. This works fine, however the method only executeswhen data exists in that textbox after the Submit button is clicked. If Iclick the submit button and no data exists in the textbox, theOnServerValidate method does not fire. I''d like the OnServerValidate method to either execute every time the Submitbutton is clicked. I am also open to suggestions on an alternative methodto validate the control. I can not utilize a RequiredFieldValidator becausedata in other textboxes in the web form determine if the textbox in questionshould contain data or not. It''s a little complicated, hence the use of theCustom Validator. If anyone has any suggestions, I''d love to hear them. Thanks,-Rigs 解决方案 OnServerValidate executes Submit because question the This OnServerValidate executesIf I click the submit button and no data exists in the textbox, the OnServerValidate method does not fire. I''d like the OnServerValidate method to either execute every time the Submit because questionof the 这篇关于自定义验证程序仅在数据存在时触发OnServerValidate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-16 20:10