ASP.NET GridView 中的日期格式问题

发布于 2024-10-25 21:13:11 字数 357 浏览 1 评论 0原文

这是我的 .net 应用程序中 GridView 中的日期列。

<asp:BoundField DataField="TestDate" HeaderText="Date" DataFormatString="{0:dd/MM/yyyy}">
</asp:BoundField>

日期在我的电脑上以给定的格式正确显示:

23/03/2011

但在测试服务器上它以以下格式显示:

3/23/2011 5:19:18 PM

这是不正确的。

有谁知道如何解决它?

here is a Date column in GridView in my .net application.

<asp:BoundField DataField="TestDate" HeaderText="Date" DataFormatString="{0:dd/MM/yyyy}">
</asp:BoundField>

date displaying properly on my pc in given format :

23/03/2011

but on test server it displaying in the following format:

3/23/2011 5:19:18 PM

which is incorrect.

Does anyone know how to resolve it?

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

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

发布评论

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

评论(1

小红帽 2024-11-01 21:13:11

试试这个

 <asp:boundfield datafield="Your_Date_Column" dataformatstring="{0:MMMM d, yyyy}" htmlencode="false" />

为什么 htmlencode 需要的是

HTML-encoding field values helps to prevent cross-site scripting attacks and malicious content from being displayed. This property should be enabled whenever possible.

Try this

 <asp:boundfield datafield="Your_Date_Column" dataformatstring="{0:MMMM d, yyyy}" htmlencode="false" />

Why htmlencode requires is

HTML-encoding field values helps to prevent cross-site scripting attacks and malicious content from being displayed. This property should be enabled whenever possible.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文