Sample -3
This Is JQuery DatePicker you have to add JQuery Cdn for this
<link href=”http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css” rel=”Stylesheet”
type=”text/css” />
<script type=”text/javascript” src=”http://code.jquery.com/jquery-1.7.2.min.js”></script>
<script type=”text/javascript” src=”http://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
<script language=”javascript”>
$(document).ready(function () {
$(“#txtdate”).datepicker({
minDate: 0
});
});
</script>