문제

I have a problem where my page has a required field validator, but I also want to use a 'cancel' button which will take the user back to the menu page using response.redirect("default.aspx");

Problem is the field validator keeps firing when you click the cancel button. How do you turn this off so the user can return to the menu page?

도움이 되었습니까?

해결책

Just add CausesValidation="false" to your button definition and it won't raise any validators:

<asp:Button ID="btnCancel" runat="server" Text="Cancel" CausesValidation="false" />
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top