2

I have a webform which has validators on it that work well when the user presses the submit button. But when the user presses the logout button the validators stop that button from working.

Any suggestions as to how remedy this?

Meir
  • 12,285
  • 19
  • 58
  • 70

3 Answers3

2

You need to use the CausesValidation property on the button.

<asp:Button id="Button1" runat="server"
  Text="Cancel" CausesValidation="False">
</asp:Button>
Matt Greer
  • 60,826
  • 17
  • 123
  • 123
0

Do you have ValidationGroup set up?

epitka
  • 17,275
  • 20
  • 88
  • 141
0

Validation Groups shouldn't be needed. Instead, you need to specify on your buttons that they do not cause validation. This means you set the CausesValidation property to false.

At that point, that control's events won't trigger validation (client or server side).

JustLoren
  • 3,224
  • 3
  • 27
  • 34