我有一个gridview,我为特定行格式化特定数量的单元格:
protected void hoursReportGridView_OnRowDataBound(Object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.RowIndex == 1 || e.Row.RowIndex == 2)
{
for (int i = 0; i < 14; i++)
{
e.Row.Cells[i].ForeColor = Color.Black;
e.Row.Cells[i].BackColor = ColorTranslator.FromHtml("#EAFDB3");
e.Row.Cells[i].Font.Bold = true;
}
}
}
}
现在,更改的行是静态的(第1行和第2行)。
我已经为gridview添加了功能,现在需要格式化的动态行数(2到10之间)。行总是彼此相邻。
如何动态选择行?