all。 私はasp.net MVC 5を初めて使いました。 DateTimeの型を持つデータベースに列があり、datepickerを使用して日付を挿入したいと考えています。しかし、それは私にエラーを与えた。私の見解は、どの日付形式がすべきdatepickerを使用して日付をデータベースに挿入する
<div class="form-group">
@Html.LabelFor(model => model.foundDate, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.foundDate, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.foundDate, "", new { @class = "text-danger" })
</div>
</div>
スクリプト
$(document).ready(function() { $("#foundDate").datepicker({dateformat: 'dd/MM/yyyy'}); });
ある
[Display(Name = "Found Date")] public System.DateTime foundDate { get; set; }
データベースのdatetimeに渡されますか?どのように日付ピッカーの戻り値の型に一致するように変更できますか?
この問題を解決する助けがあれば幸いです。
アドバイスありがとうございます。モデルのデータ型を宣言し、問題を解決しました。 – harry