参考
http://sz.luohuedu.net/xml/ShowDetail.asp?id=0BF1E82C-A30A-4B5B-85B2-8DB339A41D37

解决方案 »

  1.   

    在ItemCreated事件中
    switch(e.Item.ItemType)
     {
    case ListItemType.Header:
    e.Item.Cells[0].RowSpan = 2;
    e.Item.Cells[1].RowSpan = 2;
    e.Item.Cells[2].ColumnSpan = 2;
    e.Item.Cells[2].Text = "姓名";
    e.Item.Cells.RemoveAt(3);
    e.Item.Cells[3].RowSpan = 2;
    e.Item.Cells[3].Text = "2003年度 </td></tr><tr><td nowrap=\"nowrap\" align=\"Center\" style=\"font-weight:bold;\">2月</td><td nowrap=\"nowrap\" align=\"Center\" style=\"font-weight:bold;\">3月";
    break;
      }自己参考