For someone skilled in this area, this task should be a breeze.
I have three components: a launch calendar button, a continue button, and a date textbox. When the button is clicked, a JavaScript calendar pops up in a new window. This calendar sets a date in the ReservationDate textbox using the following code:
window.opener.document.getElementById('ctl00_wpm_ShowProduct_ctl10_ReservationDate').value = '<%= CurrentDate %>';
Although the date appears in the field on the browser, the server-side script does not recognize it when I click the continue button. How can I ensure that the server-side script uses the text in the field displayed by the browser?
I understand that this issue stems from the difference between server-side and client-side actions, but how can I overcome this disconnect?