0

在从数据库中获取数据后,我想在我的 datagridview 中添加一行。例如 :

Product - - - Price
   1    - - - 100
   2    - - - 100
   3    - - - 100
 Total  - - - 300

Total 是我要手动添加的值。任何帮助提前感谢。

4

1 回答 1

2

在 FooterTemplate 中为总和添加标签

在 rowdatabound 事件中的服务器端,

    protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {

     if (e.Row.RowType == DataControlRowType.Footer)
    {
   //Do your code
    }
    }
于 2013-08-05T18:00:41.903 回答