|
发表于 2020-4-22 16:00:01
|
显示全部楼层
if (e.Row.RowType == DataControlRowType.DataRow)
{
GridViewRow row = new GridViewRow(e.Row.RowIndex + 1, e.Row.RowIndex, DataControlRowType.DataRow, DataControlRowState.Normal);
this.GridView1.Controls[0].Controls.Add(row);
row.Cells.Add(new TableCell());
row.Cells[0].ColumnSpan = e.Row.Cells.Count;
row.Cells[0].Text = "<TABLE WIDTH ='100%' ><TR><TD>AA</TD><TD>BB</TD><TD>CC</TD></TR></TABLE>";
Response.Write(row.Cells.Count.ToString() + "**");
}
|
|