N
Nathan Sokalski
I am writing a Validator (a control that inherits from
System.Web.UI.WebControls.BaseValidator), and I need to get a reference to
the Control specified by the ControlToValidate property. I have tried using:
Me.Page.FindControl(Me.ControlToValidate)
But this is returning the value Nothing. I think the reason for this is that
my test page is using a Master Page, but regardless of the reason I
obviously need code that will return the correct value regardless of where
it is being used. After a little research, I found that the Validator and
ControlToValidate must be in the same container (and in every scenario I
have ever seen they are anyway, including my test page). In my case, this
would be the ContentPlaceHolder, but for other people the container might be
something else (Because this is a Control I need something that will work
for everyone). Is there a property or method that can tell me the container
of ControlToValidate (I am thinking if I use the FindControl method of the
container, it should work)? Or, if somebody knows a better way to get a
reference to the Control specified by ControlToValidate, that would be good
as well. Thanks.
System.Web.UI.WebControls.BaseValidator), and I need to get a reference to
the Control specified by the ControlToValidate property. I have tried using:
Me.Page.FindControl(Me.ControlToValidate)
But this is returning the value Nothing. I think the reason for this is that
my test page is using a Master Page, but regardless of the reason I
obviously need code that will return the correct value regardless of where
it is being used. After a little research, I found that the Validator and
ControlToValidate must be in the same container (and in every scenario I
have ever seen they are anyway, including my test page). In my case, this
would be the ContentPlaceHolder, but for other people the container might be
something else (Because this is a Control I need something that will work
for everyone). Is there a property or method that can tell me the container
of ControlToValidate (I am thinking if I use the FindControl method of the
container, it should work)? Or, if somebody knows a better way to get a
reference to the Control specified by ControlToValidate, that would be good
as well. Thanks.