是否可以在运行时在ASP.NET DataGridView中设置列或单元格的DataFormatString属性?
答案 0 :(得分:2)
这应该有用。
BoundField priceField = grid.Columns[0] as BoundField;
priceField.DataFormatString = "{0:c}";
priceField.HtmlEncode = false;
grid.DataSource = list;
grid.DataBind();
通过http://geekswithblogs.net/michelotti/archive/2006/03/30/73896.aspx
找到答案 1 :(得分:1)
我不知道,您可能想尝试在RowDataBound事件上执行列格式化,但可能会降低某些性能。 如果有人能提供更简单的方法,我们会很高兴。
答案 2 :(得分:1)
似乎没有办法设置DataFormatString属性。我最终将数据源绑定到表,然后遍历所有单元格并手动格式化它们:
DataGridView.AutoGenerateColumns = true;
DataGridView.DataSource = dbconnection.getDataReader();
DataGridView.DataBind();
int result;
for (int i = 0; i < DataGridView.Rows.Count; i++)
{
foreach (TableCell c in DataGridView.Rows[i].Cells)
{
if (int.TryParse(c.Text, out result))
{
c.Text = String.Format("{0:n0}", result);
}
}
}
这种方法对我来说很有效。不知道如何使用大型数据集进行扩展,尽管我的猜测是没关系。