For some reason i can not format the text of my date in a gridview

<asp:BoundField DataField="deptdate" HeaderText="Departure Date" dataformatstring="{0:ddd, MM/d/yyyy}" htmlencode="False" SortExpression="deptdate" />

I still get this:

May 10 2011 12:00AM

I DID NOT SET MY FIELD TO DATETIME IN THE DATABASE...DOY

link|improve this question

1  
Can you post your dataformatstring code? Or any other code pertinent to this? It's a bit difficult to give you a solid answer without. Also, what result are you trying to get? – Tyler Ferraro Apr 26 '11 at 15:31
sorry i didnt realize my code didnt show up in my post – bugz Apr 26 '11 at 15:34
feedback

2 Answers

up vote 1 down vote accepted

Have you tried this approach?

http://peterkellner.net/2006/05/24/how-to-set-a-date-format-in-gridview-using-aspnet-20using-htmlencode-property/

<asp id="GridView1" runat="server" :GridView>
<columns>
  <asp headertext="CreationDate" dataformatstring="{0:M-dd-yyyy}" 
       datafield="CreationDate" :BoundField HtmlEncode="false" />
</columns>
link|improve this answer
sorry this is what i was doing it just didnt show in my post – bugz Apr 26 '11 at 15:34
feedback

You can use DataFormatString="{0:d}" for short date format in your column definition.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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