我在我的模型這一領域的jQuery日期時間選擇器MVC3
[DataType(DataType.DateTime)]
[Required(ErrorMessage = "Expire is required")]
public DateTime Expire
{
get;
set;
}
在我看來
@Html.EditorFor(model => model.Expire))
@Html.ValidationMessageFor(model => model.Expire)
和我創建DATATIME EditorTemplates
@inherits System.Web.Mvc.WebViewPage<System.DateTime>
@Html.TextBox("", (Model.ToShortDateString()), new { @class = "datePicker" })
<script type='text/javascript'>
$(document).ready(function() {
$(".datePicker").datepicker({
// buttonImage: "/content/images/calendar.gif",
// showOn: "both",
// defaultDate: $("#calendar-inline").attr('rel')
showAnim: 'slideDown',
dateFormat: 'dd/mm/yyyy'
});
});
</script>
當我試圖創建新項目我有這個錯誤信息
傳遞到 字典中的模型項目是空的,但這個 詞典需要類型爲「System.DateTime的」
我嘗試
Model.HasValue ? Model.Value.ToString("MM/dd/yyyy") : DateTime.Today.ToShortDateString()
但我一個非空模型 項目沒有型號值檢查