| Author: Giribabu 10 May 2008 | Member Level: Gold | Rating: Points: 2 |
You could handle the ItemCreated event and check if: e.Item.ItemType == ListItemType.Pager.
If it is, you are creating the pager controls, here you can inspect and modify the controls collection using e.Item.Controls property. You can remove and reinsert these controls and apply any formatting you like.
and check another example http://www.codeproject.com/KB/aspnet/DataListPaging.aspx
|
| Author: karthekeyan 11 May 2008 | Member Level: Diamond | Rating: Points: 2 |
aspalliance.com/das/datalistpaging.aspx
|