hi,
i have two date picker.i want range code.that if textbox 1 date is greater than textbox2 date then its shows message.
thanks for the help.
please help me out
this is my coding
<script type="text/javascript">
$(function () {
$("#<%=TextBox1.ClientID%>").datepicker({
changeMonth: true,
changeYear: true
});
});
</script>
<script type="text/javascript">
$(function () {
$("#<%=TextBox2.ClientID%>").datepicker({
changeMonth: true,
changeYear: true
});
});
</script>
Go to the complete details ...