ASP.NET GridView 中的日期格式问题
这是我的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
为什么 htmlencode 需要的是
Try this
Why htmlencode requires is