使用文本属性在 TemplateField 中显示 HH:mm 24H 格式

发布于 2024-07-10 08:09:10 字数 135 浏览 6 评论 0原文

我正在尝试使用此行显示 24 小时格式:

Text='<%# Bind("Appointment", "{HH:mm}")

那么如何格式化它以显示例如 16:40 而不是 4:40?

I'm trying to show a 24 hours format using this line:

Text='<%# Bind("Appointment", "{HH:mm}")

So how it'll be formated for showing for example 16:40 instead 4:40?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

够钟 2024-07-17 08:09:10

如果您不需要绑定,请尝试:

Text='<%# string.Format("{0:HH:mm}", Eval("Appointment"))%>; '

否则我想您可以更新 OnDataBound 事件中的字段值。

if you don't need to bind it, try:

Text='<%# string.Format("{0:HH:mm}", Eval("Appointment"))%>'

otherwise i suppose you can update the field value in the OnDataBound event.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文