Adding validation controls programmatically

G

Guest

I am creating a server control that adds web controls (i.e. textboxes, etc) to a form. I use HtmlTable to build the table and insert the controls. Now I want to add validators to the textbox. Here is the code that I am using

bool lastnamerequired=false
public bool LastNameRequire

get{return lastnamerequired;
set{lastnamerequired = value;


if(lastnamerequired

System.Web.UI.WebControls.RequiredFieldValidator rfv = new RequiredFieldValidator()
rfv.ControlToValidate = "sFirstName"
rfv.Display = ValidatorDisplay.Dynamic
rfv.Text = ""
rfv.ErrorMessage = "Required"
rfv.EnableClientScript = true
rfv.ID = "rfvFirstName"
td.Controls.Add(rfv)


This code seems to only add the word "Required" to my form when rendered. It's not dynamic nor does it go away when the field is valid

Any ideas
 
P

Peter Blum

Are you adding these controls in the PreRender stage? Validators must be
setup prior to PreRender because they have to be able to run their own
OnPreRender method. That method outputs the necessary javascript for
validation and converts the IsValid property into the shown or hidden <span>
tag as the page is initially drawn.

--- Peter Blum
www.PeterBlum.com
Email: (e-mail address removed)
Creator of "Professional Validation And More" at
http://www.peterblum.com/vam/home.aspx

D Sheldon said:
I am creating a server control that adds web controls (i.e. textboxes,
etc) to a form. I use HtmlTable to build the table and insert the controls.
Now I want to add validators to the textbox. Here is the code that I am
using:
bool lastnamerequired=false;
public bool LastNameRequired
{
get{return lastnamerequired;}
set{lastnamerequired = value;}
}

if(lastnamerequired)
{
System.Web.UI.WebControls.RequiredFieldValidator rfv = new RequiredFieldValidator();
rfv.ControlToValidate = "sFirstName";
rfv.Display = ValidatorDisplay.Dynamic;
rfv.Text = "";
rfv.ErrorMessage = "Required";
rfv.EnableClientScript = true;
rfv.ID = "rfvFirstName";
td.Controls.Add(rfv);
}

This code seems to only add the word "Required" to my form when rendered.
It's not dynamic nor does it go away when the field is valid.
 

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,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top