gpt4 book ai didi

asp.net - 如何格式化时间戳以仅在 GridView 中显示日期

转载 作者:行者123 更新时间:2023-12-04 00:01:20 25 4
gpt4 key购买 nike

在一个 aspx 页面中,我正在绑定(bind)这样的标签:

  <asp:TemplateField HeaderText="Date of Joining">
<ItemTemplate>
<asp:Label ID="Label6" runat="server" Text='<%# Eval("date_of_joining") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField HeaderText="Paid Priviledge Date">
<ItemTemplate>
<asp:Label ID="Label8" runat="server"
Text='<%# Eval("paid_priviledge_date") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>

在后面的代码中,我像这样绑定(bind) GridView :(给出了最小代码)
GridView1.DataSource = dt2;
GridView1.DataBind();

但 gridview 列显示日期如下:
4/12/2011 12:00:00 AM    
4/4/2011 12:00:00 AM

请建议如何删除时间戳部分并仅显示日期部分。

我知道如何通过使用 ToString 和 SubString 进行格式化来做到这一点。但我无法在 gridview 中做到这一点。

最佳答案

您可以为 eval 语句指定格式字符串:

Eval("date_of_joining", "{0:dd/MM/yyyy}")

关于asp.net - 如何格式化时间戳以仅在 GridView 中显示日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5807004/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com