remove a control from a datagrid footer

  • Thread starter Thread starter Darren Spooner
  • Start date Start date
D

Darren Spooner

can anyone tell me how to remove a control for the footer of the datagrid
thanks
darren
 
try this
if(e.item.itemtype == ListItemType.Footer)
e.Item.Cells[3].Controls.Remove blah blah blah
 
Back
Top