tags:

views:

214

answers:

1
    <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 ?..

+2  A: 

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

womp
yes it helps, thank you , but dd.MM.yyyy
nCdy