如何将我的日期时间格式转换为日期时间?我使用字符串作为我的数据类型

时间:2018-02-05 05:03:12

标签: asp.net asp.net-mvc

我正在从数据库中检索数据,但我的日期显示不正确: enter image description here

在我的控制器中,我正在检索这样的数据:

DateOfBirth = Convert.ToString(Tbl.Rows[0]["DateOfBirth"])

在我的模特课中:

 public string DateOfBirth { get; set; }

1 个答案:

答案 0 :(得分:0)

如果您只想将日期部分用作字符串,请使用此

yourDateTime.ToShortDateString()