在GridView中的每一页末尾添加空行

Posted 杰的记事本——javascript.shop

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在GridView中的每一页末尾添加空行相关的知识,希望对你有一定的参考价值。

原文发布时间为:2008-08-03 —— 来源于本人的百度文章 [由搬家工具导入]

protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
    {    
        int numCol = GridView1.Columns.Count;
        int numRow = GridView1.Rows.Count;
        if (e.Row.RowType == DataControlRowType.Footer)
        {
            GridViewRow gr = new GridViewRow(-1, -1, DataControlRowType.EmptyDataRow, DataControlRowState.Normal);
            for (int j = 0; j < numCol; j++)
            {
                TableCell cell = new TableCell();
                cell.Text = "&nbsp";
                gr.Cells.Add(cell);
            }
            GridView1.Controls[0].Controls.AddAt(numRow + 1, gr);
        }
    }

以上是关于在GridView中的每一页末尾添加空行的主要内容,如果未能解决你的问题,请参考以下文章

使用 CSS 在 PDF 的每一页中添加页脚文本

为谷歌浏览器中的每一页打印一个标题

在 asp.net 中处理 Gridview 控件中的文本框?

请问在report machine 中 我做了一个表格 我想在表格的每一页添加一个验证码 这个验证码是随机的

如何在 Libre Office Writer 的每一页上插入不同格式的不同文本?

请问如何获得GridView选中行的每一列的信息?