Using JQuery And ASP.Net C#3.0.
I have the following Script:
<script>
$(document).ready(function () {
$("[id$=txtHiddenDate]").datepicker({
showOn: "button",
buttonImage: "../../images/calendar-icon.gif",
buttonImageOnly: true
});
});
</script>
There are 3 separate fields for day month and year.(txtDay, txtMonth, txtYear) How do return the date to these 3 separate fields?
Many thanks!
EDIT: also I want to keep hidden field aswell