views:

15

answers:

1

Hi, is there a way that I can format a Date binded in a ListView?

I have this snippet of ListView

<ListView ID="lvView" runat="server">
    <ItemTemplate>
        //... some bounded data
        <asp:Label ID="lblDate" runat="server" Text='<%# Bind("RequiredDate") %>' />
        //... another bounded data
    </ItemTemplate>
</ListView>

Since RequiredDate is a DateTime it will display somethine like this 10/20/2010 11:08:55 AM

What I want is to Format that date to output something like this Oct. 20, 2010. Normally if it is a DateTime I can write something like this requiredDate.ToString("MMMM dd, yyyy") but inside the ListView binded data I cannot do that.

I don't want to use OnItemDatabound. I just want it to be formatted inline. Is this possible?

+1  A: 

Should be like...

Text='<%# Bind("RequiredDate", "{MMM dd, yyy:d}") %>'
Muhammad Akhtar
I receive an error "Input string was not in correct format"
rob waminal
you should have a look at format string and correct this.
Muhammad Akhtar
thanks, the correct string format is `{0:MMM dd, yyyy}`
rob waminal