解决方法
对于绑定字段使用适当的
DataFormatString
。
<asp:BoundField DataField="YourDateField" HeaderText="SomeHeader" DataFormatString="{0:MM-dd-yyyy hh:mm tt}" />
或者,您可以使用DateFormatString =“{0:g}”,这是一般的日期/时间模式(短时间)。它会产生像08/19/2007 11:09 AM之类的东西