0

那有可能吗?我知道您可以为特定列添加页脚模板,但是您可以在分页旁边的页脚中添加一个控件吗?

4

1 回答 1

2

是的,您需要在Row_Created事件中检查一行 type Pager,如下所示:

private void grdClientServiceType_RowCreated(object sender,   System.Web.UI.WebControls.GridViewRowEventArgs e)
{
    if(e.Row.RowType == DataControlRowType.Pager)
    {
       // Create your control here, button is an example create whatever you want
       Button theButton = new Button();
       theButton.Text = "Click Me";

       // Add new control to the row with the pager via a table cell
       e.Row.Cells[0].ColumnSpan -= 1;
       TableCell td = new TableCell();
       td.Controls.Add(theButton);
       e.Row.Cells.Add(td);
    }
}
于 2013-08-09T14:33:57.803 回答