I have two pickers and two calendars in a user control that is dynamically added to the page. For the most part all of the functionality is there (thanks to the numerous posts on this site on this topic). However, one particular postback updates the SelectedDate for both of the picker controls via server side code, this seems to have no effect (the pickers retain the same value they had when the page first loaded).
After reading a similar post on the topic I discoved that the hidden field referenced as: Request.Form(calendar.clientobjectid & "_selecteddates") always has the same value.
Is there some way from the server side to alter the picker control to refresh this value?
I have also tried clearing the selected date on the client side before performing the postback, but the Pickers stayed clear even after the postback had completed, the still did not pick up the values they were given on the server side.
Thanks