I am using ajax Toolkit Calendar Extender.And i need dd-MM-yyyy date formate. For that i write this code
Code
<asp:TextBox CssClass="tb10" ID="txtDtFrom" runat="server" Width="130px"></asp:TextBox>
<asp:ImageButton ID="ImgFrom" runat="server" ImageUrl="~/GridViewCSSThemes/Images/Calendar_scheduleHS.png" CausesValidation="False" />
<ajaxToolkit:MaskedEditExtender ID="MaskedEdit_dtFrom" runat="server"
TargetControlID="txtDtFrom"
Mask="99-99-9999"
MaskType="Date"
AcceptAMPM="True"
DisplayMoney="Left"
AcceptNegative="Left"
ErrorTooltipEnabled="True" CultureAMPMPlaceholder=""
CultureCurrencySymbolPlaceholder="" CultureDateFormat=""
CultureDatePlaceholder="" CultureDecimalPlaceholder=""
CultureThousandsPlaceholder="" CultureTimePlaceholder="" Enabled="True" />
<ajaxToolkit:MaskedEditValidator ID="MaskedEditV_dtFrom" runat="server"
ControlExtender="MaskedEdit_dtFrom"
ControlToValidate="txtDtFrom"
EmptyValueMessage="Date is required"
InvalidValueMessage="Date is invalid"
Display="Dynamic"
TooltipMessage="Input a date"
EmptyValueBlurredText="Date is required"
InvalidValueBlurredMessage="Date is invalid"
IsValidEmpty="False"
ValidationGroup="MKE" />
<ajaxToolkit:CalendarExtender ID="Cd_dt" runat="server" TargetControlID="txtDtFrom"
CssClass="red" PopupButtonID="ImgFrom" Format="dd-MM-yyyy"
Enabled="True" />
When i select any date it shows blank text box. And when i use dd/MM/yyyy then it works fine. So can any one tell me how to achieve dd-MM-yyyy format.
Try Format="dd-MM-yyyy"
Finally i got a solution. It needs some configuration changes in
.aspx
page or web config.In file
In web config
In
<system.web>
section of web config file.Now
Format="dd-MM-yyyy"
works fine.Try using
RequiredFieldValidator
instead ofMaskedEditValidator
to validate the required field. Then set theUserDateFormat="DayMonthYear"
forMaskedEditExtender
to validate the valid format.