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.