当前位置: 代码迷 >> ASP.NET >> asp.net中怎么将datetime类型只转换为date型
  详细解决方案

asp.net中怎么将datetime类型只转换为date型

热度:9478   发布时间:2013-02-25 00:00:00.0
asp.net中如何将datetime类型只转换为date型
比如2009-02-21 23:00:33
将它转换为2009-02-21

------解决方案--------------------------------------------------------
DateTime date_hope_emp_birth = Convert.ToDateTime(ds.Tables[0].Rows[0]["hope_emp_birth"]);
hope_emp_birth.Text = date_hope_emp_birth.ToString("yyyy-MM-dd");
  相关解决方案