hi all, i want to customize the repeator control with paging,with previous and next button added at footer of repeator, what i want to when repeator control added, then it should add the add the "next", previous button at footer of repeator by default. i have tried paging using pagedatasource class, it works, and added implemented the itemplate for template with previous next button as well. here is samples of code WebCustomControl1 : Repeater, ITemplate over ride oninit and do this protected override void OnInit(EventArgs e) { this.FooterTemplate = new WebCustomControl1(); base.OnInit(e); } implemented interface public void InstantiateIn(Control container) { code for previous and next buttons}. now the issue is instead of appearing at the bottom previous next buttons appears at the top of repeator,and i want them to appear at the bottom in footer section of template,all doing in custom control. previous"
Regards. Tasleem Arif