The code attached as below, It is working properly when I do not submit the form as expected. The date is required field and I did set the IsValidEmpty to false. I wondering why the validation could be exempted when submit the form, in meaning to say the error message displayed will be disappeared when press the submit button. Appreciate for any reply. Thanks.

<asp:MaskedEditExtender ID="MaskedEditExtender1" 
        runat="server" 
        TargetControlID="txtDate" 
        Mask="99/99/9999" 
        MessageValidatorTip="true" 
        OnFocusCssClass="MaskedEditFocus" 
        OnInvalidCssClass="MaskedEditError" 
        ClearMaskOnLostFocus="True" 
        MaskType="Date" 
        ErrorTooltipEnabled="False" />

        <asp:MaskedEditValidator ID="MaskedEditValidator1" 
        CssClass="error" 
        runat="server" 
        ControlExtender="MaskedEditExtender1" 
        ControlToValidate="txtDate" 
        IsValidEmpty="false" 
        EmptyValueMessage="Date is required!" 
        InvalidValueMessage="Date is invalid!"  
        Display="Dynamic" 
        TooltipMessage="Input a date" 
        EmptyValueBlurredText="Date is required!" 
        InvalidValueBlurredMessage="Date is invalid!" 
        ValidationGroup="MKE" />
        </ajaxToolkit:MaskedEditExtender>
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.