fieldvalidator

V

Vinnie

vinnie
View profile
More options Oct 6, 6:05 pm
Newsgroups: microsoft.public.dotnet.languages.csharp
From: vinnie <[email protected]>
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
 

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

Top