Custom Validator

G

Gonza

Hi group, i'm trying to add a customvalidator control to a custom web
control. The problem is i'm getting a "Unable to find control id..."
exception. Here is the code:

public class CuitTextBox : WebControl
{
protected override void OnInit(EventArgs e)
{


base.OnInit(e);
}


protected override void OnPreRender(EventArgs e)
{
Control numericTextBox =
Page.LoadControl("~/WebControls/NumericTextBox.ascx");


TextBox underliyingText =
numericTextBox.FindControl("txtTextBox") as TextBox;


CustomValidator validator = new CustomValidator();


validator.ControlToValidate = underliyingText.ClientID;
validator.ErrorMessage = "El CUIT ingresado es invalido";
validator.ClientValidationFunction = "ValidateCuit";
validator.Visible = true;
validator.Enabled = true;
validator.EnableClientScript = true;


Controls.Add(validator);
Controls.Add(numericTextBox);


PageUIHelper.RegisterJsUtilFile(Page);


base.OnPreRender(e);
}
}


Thanks in advance for any help
 
R

Riki

Don't use the ClientID in
validator.ControlToValidate = underliyingText.ClientID;

Just use the Server ID:
validator.ControlToValidate = underliyingText;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top