i have a datatable which i am binding to a datagrid. On of the column in datatable has data of datetime format. i want to convert all the values under that column to "dd/mm/yyyy" format . I want to make the required changes from code behind.
If dt.Rows.Count > 0 Then
gdvImport.DataSource = dt
gdvImport.DataBind()
End If