Possible Duplicate:
Format Date in Bind Statement inside a ListView

I have modified a master detail gridview example as per my requirement. It is working fine but date format in one of cell is displaying as "12/12/2012 12:00:00 AM". I just want to show only "12/12/2012". Please help, code is as below"

<asp:TemplateField HeaderText="Date of Failure" SortExpression="Failure_date" >
<EditItemTemplate>
<asp:TextBox ID="EditFailure_date" runat="server" Columns="20" MaxLength="50" Text='<%# Bind("Failure_date") %>'></asp:TextBox>
<asp:RequiredFieldValidator ID="Failure_dateRequiredFieldValidator" runat="server" ControlToValidate="EditFailure_date" Display="Dynamic"  ErrorMessage="Can not be blank" SetFocusOnError="True"></asp:RequiredFieldValidator>
 </EditItemTemplate>
 <ItemStyle HorizontalAlign="Left" VerticalAlign="Top" />
 <HeaderStyle HorizontalAlign="Left" VerticalAlign="Top" />
 <ItemTemplate>
 <asp:Label ID="Failure_date" runat="server"  Text='<%# Bind("Failure_date") %>' ></asp:Label>
 </ItemTemplate>
 </asp:TemplateField>  
link|improve this question
feedback

closed as exact duplicate by casperOne Feb 5 at 4:22

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

use this:

<%# Bind("Failure_date", "{0:dd/mm/yyyy}") %>
link|improve this answer
It is also working after placing " before {. Thank you Sir. – user1185088 Feb 2 at 12:59
edited to fix the omission. – Richard Feb 2 at 14:16
feedback

You can do it by passing the format to the 2 Bind parameter.

Text='<%# Bind("Failure_date","{0:dd/MM/YYYY}") %>'
link|improve this answer
Thank you very much. It is working – user1185088 Feb 2 at 12:53
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.