我在用户控件中有一个gridview。我正在使用BoundField在aspx页的gridview中显示列。我可以在文件(.cs)后面的代码中添加其他列吗?我需要在用于其他页面的用户控件中添加一些其他列。

最佳答案

您可以添加gridview的新cell in RowDataBound事件,如下所示。 (我在需要的地方添加了评论)

protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
   {
     TableHeaderCell NewCell = new TableHeaderCell();
     NewCell.Text = "Header Text";
     e.Row.Cells.AddAt(4(Index of Cell where you want to add cell), NewCell);
   }


if (e.Row.RowType == DataControlRowType.DataRow)
     {
       TableCell NewCell= new TableCell();
       NewCell.ID = "NewCell";
       NewCell.Text = "Text value of cell which you want to display";
       e.Row.Cells.AddAt(4, NewCell);
     }
 }

09-05 01:47