Skip to content

Replies

0
Chris Walker
Chris Walker answered on Apr 13, 2011 8:13 PM

I recall having that issue as well. When you initially set the date in the Edit control (Webdatepicker) you also need to set the dropdown's selected date.

DateTime myDate = DateTime.Now;

myDatePicker.Date = myDate;

myDatePicker_WebMonthCalendar.SelectedDate = myDatePicker.Date;

 

See if that takes care of your initial postback.