MVC を使用しているため、jQuery はレイアウト ページで既に参照されている必要があります。jqueryUIも必要です。
datepicker コードがエラーを投げている場合は、次の 2 行をビューまたはレイアウト ページに追加します。
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
次に、datepicker 機能を取得する必要がある要素を宣言する必要があります。
$(document).ready(function(){
$(".getdate").each(function() {
$(this).datepicker();
});
});
それに応じて Html.TextBoxFor() を編集します。
@Html.TextBox("RateListStartDate", new {@class="getdate"})
これでうまくいくはずです。敬具