请问GRIDVIEW怎样固定多层表头
以前用的固定表头都是网上流行的那种,但是只能固定一层的表头,今天做项目遇到了!3层表头,而且还要固定,小弟在网上查阅了很多资料都还是没有弄好,请教各位大虾,谁做过固定多层表头,请指教一下,
试试下面这种方法
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Header)
{
string strTitle = @"<tr><td rowspan = '2'>水源地名称</td>"; //rowspan为跨行数
strTitle = strTitle + @"<td rowspan ='2'>水源地编码</td>";
strTitle = strTitle + @"<td rowspan = '2'>输水方式</td>";
strTitle = strTitle + @"<td rowspan = '2'>是否有调蓄设施</td>";
strTitle = strTitle + @"<td rowspan ='2'>输水长度</td>";
strTitle = strTitle + @"<td colspan ='6' align = 'center'>净水厂处理工艺</td></tr>"; //colspan为跨列数
strTitle = strTitle + @" <td>沉淀</td>";
strTitle = strTitle + @"<td>过滤</td>";
strTitle = strTitle + @"<td>消毒</td>";
strTitle = strTitle + @"<td>强化深度处理</td>";
strTitle = strTitle + @"<td>含藻水特殊处理工艺</td>";
strTitle = strTitle + @"<td>其他</td></tr>";
TableCellCollection tcHeader = e.Row.Cells;
tcHeader.Clear();
tcHeader.Add(new TableCell());
tcHeader[0].Text = strTitle;
}
}