Dan Appleyard
Dan Appleyard

Reputation: 7445

How can I access textbox properties in a custom validator?

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!

Upvotes: 0

Views: 226

Answers (1)

Paulus E Kurniawan
Paulus E Kurniawan

Reputation: 754

To get the textbox:

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

Upvotes: 1

Related Questions