这里我的代码是
string DateOfBirth;
manageusers.DateOfBirth1 = Convert.ToDateTime(DateOfBirth);
默认会显示如下
manageusers.DateOfBirth1 = {1/1/0001 12:00:00 AM}
答案 0 :(得分:1)
使DateOfBirth1成为可以为空的属性:
public DateTime? DateOfBirth1 { get; set; }
更好的解决方案是做这样的事情:
DateOfBirth1 = string.IsNullOrEmpty(DateOfBirth)
? (DateTime?) null
: DateTime.Parse(DateOfBirth);