由于某些原因,我无法在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
答案 0 :(得分:8)
你尝试过这种方法吗?
<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