How do I tell CE not to validate the length on a cancel?

  •  09-01-2011, 8:45 AM

    How do I tell CE not to validate the length on a cancel?

    I have a CE dialog with a MaxLength = 6000, and below it a Submit and a Cancel button as below:
     
    <asp:button id="SaveButton" Runat="server"></asp:button>
    <asp:button id="CancelButton" CausesValidation="False" Runat="server"></asp:button>
     
    If the text in the CE exceeds 6000 chars and the user hits cancel, the length validation message appears and the postback does not occur.  The user has to clear out the CE dialog to be able to cancel!  How do I stop the error and allow the postback?
View Complete Thread