<link href="css/jquery-ui-1.8.19.custom.css" rel="stylesheet" type="text/css" />
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script src="jquery-ui-1.8.19.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
var date = new Date();
var currentMonth = date.getMonth();
var currentDate = date.getDate();
var currentYear = date.getFullYear();
$('#<%= txtDate.ClientID %>').datepicker({
minDate: new Date(currentYear, currentMonth, currentDate)
});
});
<script type="text/javascript">
$(function () {
$("#txtDate").datepicker({
changeMonth: true,
changeYear: true,
yearRange: '1970:2012'
});
});
</script>
</script>
https://www.dropbox.com/s/vkoywk9e82zbkk2/jquery-1.7.2.min.js
https://www.dropbox.com/s/m86818er11601xf/jquery-ui-1.8.19.custom.css
https://www.dropbox.com/s/f52ldmqem6ltvgl/jquery-ui-1.8.19.custom.min.js
https://www.dropbox.com/sh/ujzfwpvuscjkk8o/F47oY_F2Ro