当前位置:编程学习 > C#/ASP.NET >>

DataGrid中画出多行表头后,如何进行排序啊??请高手指教

我是按照这种方式来画出表头的,首先原单元格清除,但是排序确没有用了.请高手门提出解决的办法.   
private       void       dgShowData_ItemCreated(object       sender,       System.Web.UI.WebControls.DataGridItemEventArgs       e)   
{   
if(e.Item.ItemType==ListItemType.Header)   
{   

TableCellCollection       tcl=e.Item.Cells;          
tcl.Clear();   
//列头第一行   
tcl.Add(new       TableHeaderCell());   
tcl[0].Attributes.Add(   "colspan   ",   "3   ");   
tcl[0].Text=   "General       Information   ";   
                  .......   
                  .......   
}   

或谁有没有解决多行表头同时排序的方法..谢谢!!
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,