我正在研究MVC和Jquery,我有一个表单来为网站创建一个新事件。在日期部分,我使用datepicker显示日历并让用户选择日期。我的格式是:
format: 'dd/mm/yyyy',
但是当我提交表单时,它总是失败并告诉我格式无效。我发现问题是当我选择2016年3月24日的日期时,它设定月份为24,日期为3(表示3月)。
这里发生了什么,有人可以帮助我吗?非常感谢你。
型号:
public SeminarListViewModel()
{
Documents = new List<DocumentDisplayViewModel>();
}
public string EventID {get;set;}
public string Name { get; set; }
public short Capacity { get; set; }
[DataType(DataType.Date)]
public DateTime StartDate { get; set; }
[DataType(DataType.Date)]
public DateTime EndDate { get; set; }
public List<DocumentDisplayViewModel> Documents { get; set; }
}
答案 0 :(得分:0)
在您的课程中,在ArgumentError: Column-based expression object expected for argument 'remote_side'; got: '<built-in function id>', type <type 'builtin_function_or_method'>
和start date
属性之上添加以下内容:
end date