本文介绍了如何通过使用eval申请日期的特定的格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用下面的code:
<asp:HyperLink ID="Time" runat="server" Text='<%#Eval("CREATED_ON")%>'> </asp:HyperLink>
它会显示格式的日期:2010年11月4日上午10时52分33秒。
It will display the date in the format: 11/4/2010 10:52:33 AM
但我希望它显示 2010年11月4日
。我会怎么做呢?
But I want it to display 11/4/2010
. How would I do this?
推荐答案
您应该能够使用这样的:
You should be able to use something like this:
<asp:HyperLink ID="lnkCreatedDate" runat="server" Text='<%#Eval("CREATED_ON", "{0:dd/M/yyyy}")%>'> </asp:HyperLink>
这篇关于如何通过使用eval申请日期的特定的格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!