i have a textbox adn a datepicker next to it and i am using asp.net and the user can enter the date as well select the date from datepicker.
how would you validate if the date is entered correct?
<script type="text/javascript">
$(document).ready(function () {
$('#<%=StartDate.ClientID%>').datepicker({ showOn: 'button',
buttonImage: '../images/Calendar.png',
buttonImageOnly: true, onSelect: function () { },
onClose: function () { $(this).focus(); }
});
});
</script>