摘要: //GridView合并单元格//中间变量,存取TableCell private TableCell publishDateCell = null; protected void grvTest_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { //第一行,publishDateCell=null if (publishDateCell == null) { publishDateCell = e.Row.Cells[2]; pub. 阅读全文
posted @ 2012-08-10 15:26 eva.xiao 阅读(129) 评论(0) 推荐(0) 编辑