我有一个从数据库绑定到数据表的网格视图。其中一列是日期时间字段,我必须在短日期模式 (mm/dd/yyyy) 下阅读它。但是,我想知道是否有任何容易从日期时间中删除年份的方法,无论是在单元格中还是在显示时。
//Convert the "date" column to only appear in mm/dd format
foreach (GridViewRow row in GridView1.Rows)
{
String myS = row.Cells[2].Text;
DateTime dt = DateTime.Parse(row.Cells[2].Text);
row.Cells[2].Text = dt.ToShortDateString();
}