我想格式化GridView Cell文本的日期,如
ddMMMYYYY
(i.e)
07MAY2010
如何实现这个目标?
RowDataBound()
{
....
e.Row.Cells[10].Text = ......?
}
答案 0 :(得分:2)
如下所示,foramte字符串是否适合您
e.Row.Cells[10].Text =String.Format("{0:dd/MMM/yyyy}", dt);
with out /
e.Row.Cells[10].Text =String.Format("{0:ddMMMyyyy}", dt)