Hi, I am looking to format a date to format dd/mm/yyyy for a template field but I can't seem to get the syntax right. I think it is because my template field links to the method of an object. The template field is:<asp:TemplateField HeaderText="Date Of Accident"> <ItemTemplate> <%#((AccidentObject)(Container.DataItem)).getAccidDate() %> </ItemTemplate> </asp:TemplateField>And all the the stuff on the internet says to format it bythis format<%# Bind("DOB","{0:D}") %>This doesn't work for me I would say because I am using a method. Any help would be really appreciated. Seamus
View Complete Post