在特定索引处添加单元格

时间:2013-10-20 06:04:34

标签: c# asp.net gridview rowdatabound

我有自动生成列的gridview。我在行数据绑定事件中动态添加了一列。

     if (e.Row.RowType == DataControlRowType.DataRow)
    {
        TableCell cell1 = new TableCell();
        e.Row.Cells.Add(cell1);
    }

       // to add header
    else
    {
        TableCell cell1 = new TableCell();
        cell1.Text = "<span style='font-weight:bold'>NAME";
        e.Row.Cells.Add(cell1);
    }   

最后添加此列。 我想在索引2中添加此列。

任何人都可以帮助我吗? 在此先感谢。

1 个答案:

答案 0 :(得分:2)

使用 AddAt(int index, TableCell cell) 代替

示例:

e.Row.Cells.AddAt(2, cell1);

希望这会有所帮助!!