vote up 0 vote down star
1

I have a page containing an <asp:Button/> to leave the page and a <asp:TextBox/> to get some date and another <asp:TextBox/> to confirm that data.

The confirm validator is configured as follows:

<asp:CompareValidator ID="CompareValidator" runat="server"
ErrorMessage="error message" ControlToValidate="ConfirmTextBox"
ControlToCompare="TextBox"
Operator="Equal"></asp:CompareValidator>

On the page, when editing the fields, the compare validator runs when the ControlToValidate or ControlToCompare loses focus.

When editing either fields, then clicking the button to leave the page, the compare validator runs and displays the error message but the Button_Click method is not run.

The causesValidation attribute of the button is set to false.

Can I make the Button_Click method run while maintaining the compare validator's functionality, without resorting to server validating or a regexValidator that uses the TextBox.Text value?

flag

2 Answers

vote up 1 vote down check

The CompareValidator performs the comparison all on the client side in the user's browser. If it raises an error, then it will automatically prevent the Button_Click event from firing, since a postback won't occur. I think your solution is to just perform the comparison on the server side.

link|flag
vote up 1 vote down

If the Page is not valid, why would you still want the Button_Click event to occur?

link|flag
The button is used to cancel the process that the form is used for and leave the page, so it doesn't matter whether the form is valid because its data won't be used. – StuperUser Jun 8 at 8:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.