Write code to handle,
if(textbox.text != "my required data") { /* do
something */ return; }
or if there are multiple possible values,
switch(textbox.text)
{
case "value1":
/* do something */
break;
case "value2":
....
break;
default:
/* error, invalid data */
break;
}
> -----Original Message-----
> From: C_Sharp googlegroups.com [mailto:C_Sharp googlegroups.com] On Behalf
> Of Twigg
> Sent: Monday, January 30, 2006 2:28 PM
> To: C-Sharp (C#)
> Subject: C-Sharp (C#) Group: Re: Text Box Properties
>
>
> Thank you for the accurate response Liam, one more
question, if the
> text box has a requiredfieldvalidator associated with
it how can i get
> it to ignore the default value in the box?
>
> Any help would be great!
>
> Twigg
|