I have the TimePicker inside of a FormView's EditItemTemplate (not associated with a DatePicker control). When the FormView is first switched into Edit mode, the TimePicker has the default MinValue item selected, which is great. When I select a time from the dropdown, and click a button to postback, I add something to the database in the FormView's ItemCommand event and then need to reset the control back to the MinValue. No matter what I try, when the page renders again, it retains the selected time that the user chose before the postback.
I've tried Clear(), tried setting the SelectedValue and SelectedTime to TimeSpan.MinValue and to null. I've tried doing this in the PreRender event for the formview, and also in the PreRender event for the TimePicker control itself (which seems like it should be late enough to be after ViewState kicks in).
Can you check this out in a FormView scenario?
Thanks,
Adam