if   (elemType   ==   ListItemType.Pager)   
{
TableCell   pager   =   (TableCell)   e.Item.Controls[0];

for   (int   i=0;   i<pager.Controls.Count;   i+=2)   
{
Object   o   =   pager.Controls[i];

if   (o   is   LinkButton)   
{
LinkButton   h   =   (LinkButton)   o;
h.Text   =   ""   +   h.Text   +   ""; 

//Label  aaa =   (Label)   o;
//aaa.Text=""+h.Text+"";  
}
else
{
Label   l   =   (Label)   o;
l.Text   =   ""   +   l.Text   +   "";   
}
}
}
} 怎么在上面加上,上一页 下一页 首页 尾页啊