I need to display a datetime column in my gridview, but I don't want to show millin second for sure. How do I set the format string in gridview to display a datetime data in following format: 08-19-2007 11:09 AM
Asked
Active
Viewed 9.1k times
5 Answers
55
Use the appropriate DataFormatString
for the bound field.
<asp:BoundField DataField="YourDateField" HeaderText="SomeHeader"
DataFormatString="{0:MM-dd-yyyy hh:mm tt}" />
Alternatively, you could use DateFormatString="{0:g}"
which is the general date/time pattern (short time). It would produce something like 08/19/2007 11:09 AM

Bala R
- 107,317
- 23
- 199
- 210
-
1I believe HH will display military time and AM/PM. – James Johnson Aug 29 '11 at 20:17
12
You can also check if you are using Template Field.
<asp:TemplateField HeaderText="Submission Date">
<ItemTemplate>
<%#Eval("dbDate","{0:dd/MM/yyyy HH:mm:tt}")%>
</ItemTemplate>
</asp:TemplateField>

Anders Lindén
- 6,839
- 11
- 56
- 109

siddhesh
- 367
- 1
- 3
- 8
6
Date Time Format with AM/PM:
HtmlEncode="false" DataFormatString="{0:dd/MM/yyyy hh:mm:ss tt}"

Pang
- 9,564
- 146
- 81
- 122

Akhilesh Soni
- 61
- 1
- 1
3
A suitable format string would be:
{0:MM-dd-yyyy H:mm tt}
A good resource on making custom format strings in .Net can be found at MSDN

Scott Ferguson
- 7,690
- 7
- 41
- 64
3
To format a DATETIME value in a GridView, you can do it like this:
DataFormatString="{0:MM-dd-yyyy hh:mm tt}"

James Johnson
- 45,496
- 8
- 73
- 110