Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET AJAX Calendar extender date format

Tags:

ajax

asp.net

    <asp:TextBox runat="server" ID="TextBox3"/>
<asp:CalendarExtender runat="server" ID="TextBox3_CalendarExtender" TargetControlID="TextBox3" 
                        Enabled="True" PopupPosition="BottomLeft" FirstDayOfWeek="Monday" />

output calendar Format : 2/1/2010 I need : 01.02.2010

like here : ajax calendar

how to setup this format ?..

like image 949
cnd Avatar asked Feb 01 '10 06:02

cnd


1 Answers

Use the Format property. Try Format="dd.MM.yyyy".

like image 131
womp Avatar answered Sep 21 '22 22:09

womp