日期时间格式

发布于 2024-10-26 04:46:47 字数 144 浏览 0 评论 0原文

目前我正在使用下面的代码来获取 3 月 06 日。我该怎么做才能获得 3 月 6 日

Text='<%# Bind("ToDate","{0:m}")%>'

Currently I am using below code to get March 06. What do I do to get 06 March?

Text='<%# Bind("ToDate","{0:m}")%>'

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

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

发布评论

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

评论(3

聚集的泪 2024-11-02 04:46:58

使用自定义格式字符串或使用不同的区域设置。如果我正确地阅读了代码,这里有一个格式字符串可以为您提供正确的字符串:

Text='<%# Bind("ToDate", "{0:dd MMMM}") %>'

但是我不确定您将如何使用不同的区域设置。其他人可能有答案。

Either use a custom format string or use a different locale. If I'm reading the code right, here's a format string to give you the right string:

Text='<%# Bind("ToDate", "{0:dd MMMM}") %>'

I'm not sure how you'd use a different locale however. Someone else might have the answer to that.

夏有森光若流苏 2024-11-02 04:46:58
Text='<%# Bind("ToDate","{0:dd MMM}")%>'
Text='<%# Bind("ToDate","{0:dd MMM}")%>'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文