全部。 我是新來的asp.net MVC 5. 我的數據庫中有一列有DateTime類型,我想用datepicker來插入日期。但是,它給了我一個錯誤。 the error使用datepicker將日期插入到數據庫中
我的模型就像
[Display(Name = "Found Date")] public System.DateTime foundDate { get; set; }
我的看法是
<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'}); });
哪個日期格式應被傳遞到數據庫中的日期時間?我怎樣才能改變它,以便它匹配datepicker的返回類型?
任何幫助解決這個問題,將不勝感激。
感謝您的意見。我在模型中聲明瞭數據類型並解決了問題。 – harry