Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 aspx 页面中,我将转发器与日期绑定。它显示完整日期,我想将其格式化为短日期。请指导我如何在 aspx 代码中格式化日期(不在 C# 或 Vb 中)
这是我的代码:
<a class="CalendarLinks" href="readmore.aspx?wkdate=<%# Eval("cldID") %>"> <%# Eval("cldDate")%></a>
谢谢
您可以使用重载的 Eval 来传递格式
<a class="CalendarLinks" href="readmore.aspx?wkdate=<%# Eval("cldID") %>"> <%# Eval("cldDate", "{0:dd/MM/yyyy}")%></a>