使用dataformatstring格式化日期时间

时间:2011-04-26 15:29:18

标签: asp.net vb.net gridview date dataformat

由于某些原因,我无法在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

我没有将我的字段设置为数据库中的日期... DOY

3 个答案:

答案 0 :(得分:8)

你尝试过这种方法吗?

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>

答案 1 :(得分:2)

您可以在列定义中使用DataFormatString="{0:d}"作为短日期格式。

答案 2 :(得分:0)

自2013年第二季度起,RadHtmlChart可以数据绑定到DateTime对象,因此可以将XAxis标签,系列标签和工具提示格式化为所需的日期格式。有关格式化日期的更多信息,请参见日期轴文章:http://www.telerik.com/help/aspnet-ajax/htmlchart-date-axis.html