fieldvalidator
- From: Vinnie <centro.gamma@xxxxxxxxx>
- Date: Sat, 06 Oct 2007 15:15:37 -0700
vinnie
View profile
More options Oct 6, 6:05 pm
Newsgroups: microsoft.public.dotnet.languages.csharp
From: vinnie <centro.ga...@xxxxxxxxx>
Date: Sat, 06 Oct 2007 15:05:37 -0700
Local: Sat, Oct 6 2007 6:05 pm
Subject: form with "clear"
Reply | Reply to author | Forward | Print | Individual message | Show
original | Remove | Report this message | Find messages by this author
i have a small form, with 5 labels and 5 textboxes (with 5 field
validators), plus 2 buttons.
Now, one of the buttons is the "CLEAR" one, and so if the user presses
the clear btn all the field should be reset to empty.
I have added the code to the page as it follows:
protected void Button1_Click(object sender, EventArgs e)
{
TextBoxName.Text = "";
TextBoxTelephone.Text = "";
TextBoxTitle.Text = "";
TextBoxMessage.Text = "";
TextBoxemail.Text = "";
}
however, if the user after completing two fields wish to clear all, it
happens that pushing the CLEAR btn the field validators blocks the
action.
What should I add to the code, to make the fieldvalidator to work
only on the send-button (or to not work for the clear-button)?
thanks,
Vinnie
.
- Follow-Ups:
- Re: fieldvalidator
- From: Nathan Sokalski
- Re: fieldvalidator
- Prev by Date: Re: adding web controls from C# code
- Next by Date: new link
- Previous by thread: datagrid template column forecolor
- Next by thread: Re: fieldvalidator
- Index(es):