修改数据表列值

本文关键字:数据表 修改 | 更新日期: 2023-09-27 18:02:45

我有一个这样的数据表:

Attribute          Percentage      ReferenceAmount        TaxAmount
------------       ------------     ----------------      -----------
  Sales              5.00             5000                  250
  VAT                2.00             250                   5
  Discount            0                 0                   100

我想绑定这个数据表与一个GridView。但在GridView中,我不想显示0。而不是0,我只想让这个单元格为空。我不想显示任何其他包含0的东西。如何在数据表中替换空字符串而不是零?

修改数据表列值

我回答问题晚了,我知道答案已经被接受了。但是在可接受的答案中,您在数据绑定之后迭代行,然后设置值。

最好在DataBinding时替换该值。它将克服gridview行迭代的额外开销。

可以使用GridView的RowDataBound事件。这是完整的代码…

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
    System.Data.DataRow dr = ((System.Data.DataRowView)e.Row.DataItem).Row;
    if (dr["Percentage"].ToString() == "0")
    {
        ((Label)e.Row.FindControl("lblPercentage")).Text = "";
        //this is template field
        //OR---If you don't use template field you  can do like..--
        e.Row.Cells[1].Text  = "";
    }      
}
}

下面的GridView DataBound方法将遍历GridView中的每个单元格,并将"0"替换为空字符串:

        protected void GridView1_DataBound(object sender, EventArgs e)
        {
            foreach (GridViewRow row in GridView1.Rows)
            {
                for (int i = 0; i < row.Cells.Count - 1; i++)
                {
                    if (row.Cells[i].Text == "0")
                    {
                        row.Cells[i].Text = "";
                    }
                }
            }
        }

你可以很容易地添加一个名为PercentageDescription的属性作为String

 public string PercentageDescription
 {
    return Percentage == 0 ? " " : Percentage.ToString();
 }