如何访问自定义验证器中的文本框属性?

发布于 2024-08-21 04:44:38 字数 331 浏览 4 评论 0原文

我想构建一个继承自 BaseValidator 的自定义验证器控件。它仅用于我的 asp.net 应用程序中的文本框。如何在自定义验证器中访问文本框本身(读取文本框的属性)?

这是我的 EvaluateIsValid 函数中的内容:

 Dim t As TextBox = CType(Page.FindControl(Me.ControlToValidate), TextBox)
 Return t.Text.Length <= t.MaxLength

它似乎找不到控件,因此它因空引用异常而中断。我可以用另一种方式做到这一点吗?

谢谢!

I want to build a custom validator control that inherits from BaseValidator. It will only be used on textboxes in my asp.net application. How can I get access to the textbox itself (read properties of the textbox) within the custom validator?

Here is what I have in my EvaluateIsValid function:

 Dim t As TextBox = CType(Page.FindControl(Me.ControlToValidate), TextBox)
 Return t.Text.Length <= t.MaxLength

It can't seem to find the control, so it breaks with a null reference exception. Can I do this another way?

Thanks!

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

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

发布评论

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

评论(1

顾冷 2024-08-28 04:44:38

获取文本框:

Dim t As TextBox = CType(Me.FindControl(Me.ControlToValidate), TextBox)

To get the textbox:

Dim t As TextBox = CType(Me.FindControl(Me.ControlToValidate), TextBox)

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