摘要: //gridview数据绑定 if (daTable.Rows.Count == 0) { daTable.Rows.Add(daTable.NewRow()); GridView1.DataSource = daTable; GridView1.DataBind(); int nColumnCount = GridView1.Rows[0].Cells.Count; GridView1.Rows[0].Cells.Clear(); GridView1.Rows[0].Cells.Add(new TableCell()); GridView1.Rows[0].Cells[0].ColumnSp 阅读全文
posted @ 2011-09-15 08:40 一路遥遥 阅读(6003) 评论(0) 推荐(1) 编辑