如何在gridview页脚上打印摘要

本文关键字:打印 gridview | 更新日期: 2023-09-27 18:26:40

我想用一个条件来计算Gridview列的数据。(即,如果列数据="是",则仅计数)但Gridview是自动生成的。列数和行数经常变化。

如何统计列数据并在页脚打印

像这样。。。。。

是的总数=18否的总数=2

如何在gridview页脚上打印摘要

实现起来非常简单。您需要使用网格视图的OnRowDataBound函数。

下面的一些伪代码,因为你还没有提供你的网格视图结构

protected void gridviewID_RowDataBound(object sender, GridViewRowEventArgs e)
{
    int totalyes=0;
    int totalno=0;
    for(int i=0;i<gridviewID.Columns.Count;i++)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            //Assuming the column containg yes or no is the third column.
            if( e.Row.Cells[i].Text.ToLower()=="yes")
            {
                totalyes++
            }
            else
            {
                totalno++;  
            }
        }
        else if (e.Row.RowType == DataControlRowType.Footer)
        {
            e.Row.Cells[i].Text="Total Yes: "+ totalyes.ToString() + "Total No: "+totalno.ToString();
        }
    }
}