N2CMS 使用格式化日期属性标签
我有一个 EditableDate 属性,并使用 <n2:Display>
标记在 WebForms 页面中显示它。默认输出类似于 7/02/2011 12:00:00 AM,但我想将日期格式设置为 2011 年 2 月 7 日。已尝试
但这仅输出 {0:d MMM yyyy}。
I have an EditableDate property and am displaying it in a WebForms page with <n2:Display>
tag. The default output is something like 7/02/2011 12:00:00 AM however I would like to format the date like 7 February 2011. Have tried <n2:Display Format="{0:d MMM yyyy}">
however this just outputs {0:d MMM yyyy}.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不确定这一点:您是否只需要格式化部分?
Not sure about this: could it be that you only need the formatting part?
在您的 ContentItem 中,添加一个新属性,例如“XDateString”,如下所示:
然后在设计页面中添加:
In your ContentItem, add a new property like "XDateString" as follow :
Then in design page, add :