我有自动生成列的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中添加此列。
任何人都可以帮助我吗? 在此先感谢。
答案 0 :(得分:2)