我可以在服务器端调用 CustomValidator 方法而不分配 ControlToValidate 吗?

发布于 2024-11-17 10:02:48 字数 226 浏览 2 评论 0原文

我有来自同一组的 3 个单选按钮,每个单选按钮都启用其列表框。 我想检查是否选中了单选按钮以及是否从其列表框中选择了项目。

所以我只使用 CustomValidator 和服务器端方法来检查条件并触发特定的 ErrorMessage。

我的问题是,我可以在不将 customValidator 分配给控件的情况下调用此方法吗,因为我有 3 个可能的 radioButtons?

谢谢, 艾迪

I have 3 RadioButtons from same group, and every radioButton enables its listbox.
I want to check if radiobutton was checked and its if items were selected from its listbox.

So I"m using CustomValidator with only server side method which checks the conditions and fires the specific ErrorMessage.

My question is, can i call this method witout assigning the customValidator to a control, since i have 3 possible radioButtons?

thanks,
Eddie

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无法回应 2024-11-24 10:02:48

可以使用
CustomValidator 控件不带
设置 ControlToValidate
财产。这通常在以下情况下完成:
您正在验证多个输入
控件或验证输入控件
不能与验证一起使用
控件,例如复选框
控制。在这种情况下,值
参数的属性
传递给事件处理程序
ServerValidate 事件和
客户端验证功能始终
包含空字符串 ("")。
然而,这些验证函数
在适当的情况下仍然被称为
以确定两者的有效性
服务器和客户端。 访问
要验证的值,您必须
以编程方式引用输入
控制你想要验证然后
从中检索值
适当的财产。例如,要
验证 CheckBox 控件
服务器,不要设置
ControlToValidate 属性
验证控制并使用
以下处理程序代码
ServerValidate 事件。


http://msdn.microsoft.com/en -us/library/9eee01cx%28v=VS.100%29.aspx

It is possible to use a
CustomValidator control without
setting the ControlToValidate
property. This is commonly done when
you are validating multiple input
controls or validating input controls
that cannot be used with validation
controls, such as the CheckBox
control. In this case, the Value
property of the arguments parameter
passed to the event handler for the
ServerValidate event and to the
client-side validation function always
contains an empty string ("").
However, these validation functions
are still called, where appropriate,
to determine validity on both the
server and the client. To access the
value to validate, you must
programmatically reference the input
control you want to validate and then
retrieve the value from the
appropriate property
. For example, to
validate a CheckBox control on the
server, do not set the
ControlToValidate property of the
validation control and use the
following code for the handler for the
ServerValidate event.

http://msdn.microsoft.com/en-us/library/9eee01cx%28v=VS.100%29.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文