1. 日付の初期値をDataBoundイベントから設定する
2.日付の入力をdatepickerを使ってマウスで入力できるようにする
http://jqueryui.com/demos/datepicker/
Dim tDate As TextBox = DirectCast(Me.FormView1.Row.FindControl("tDateTextBox"), TextBox)
tDate.Text = Now
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/themes/base/jquery-ui.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript">
<!--
$(function() {
$("#FormView1_tDateTextBox").datepicker({ dateFormat: 'yy/mm/dd', "maxDate": "+0d" });
});
//-->
</script>