asp.net table/gridview 合并列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp.net table/gridview 合并列相关的知识,希望对你有一定的参考价值。
public void MergeCell(TableRow trow) { TableCell currentCell = trow.Cells[0]; TableCell prevCell = null; for (var i = 0; i < trow.Cells.Count; i++) { currentCell = trow.Cells[i]; if (prevCell != null && currentCell.Text == prevCell.Text) { prevCell.ColumnSpan = (prevCell.ColumnSpan == 0 ? 1 : prevCell.ColumnSpan) + 1; currentCell.Visible = false; } else { prevCell = currentCell; } } }
以上是关于asp.net table/gridview 合并列的主要内容,如果未能解决你的问题,请参考以下文章