Hi ,
I want to change the date format for all the rows for a speciific column in a datatable but when i am assigning the changed value to it its not reflecting.
foreach (DataRow dr in dBTable.Rows)
{
dr[4] = Convert.ToDateTime(dr[4]).ToString("dd-MMM-yy");
}
Can anyone please help?
Thanks


