DataTable或GridView列的安装格式

时间:2010-04-02 03:45:02

标签: c# asp.net

如何在DataTable或GridView的某些列中为单元格设置一些格式?

我需要将一些双列四舍五入,例如:

3.564643 - > 3.56

3.546723 - > 3.55

6.654644 - > 6.65

谢谢。

DataFormatString? 在哪里?

问题仍然存在,我没有解决问题: - /

2 个答案:

答案 0 :(得分:2)

有关如何使用字符串格式的一些示例,请参阅this blog post。这听起来像你想要使用:

DataTextFormatString="{0:N2}"

答案 1 :(得分:1)

查看此MSDN文章:GridView Examples for ASP.NET 2.0: Formatting the GridView

在GridView上选择编辑列 - >选择所需的列 - >从右侧窗格中选择ItemStyle属性 - >将DataFormatString设置为{0:N2}

链接文章有截图和说明,指出您正确的方向。另请参阅DataFormatString page了解格式信息。