View Single Post
  #25 (permalink)  
Old 08-04-2007, 02:22 AM
Venkat Venkat is offline
D-Web Master
 
Join Date: Mar 2007
Posts: 350
Venkat is on a distinguished road
Thumbs up Re: Implementation Data Controls in asp.net

hi Oxy....

Try to implement it. I have given you the gest

The PagedDataSource class encapsulates the properties of the Repeater control
that allow it to perform paging.


PagedDataSource pagedDataSource = new PagedDataSource();
DataView userGroupMemberDataView = new DataView();
userGroupMemberDataView = loadMyGroup();



pagedDataSource.DataSource = userGroupMemberDataView;
pagedDataSource.AllowPaging = true;
pagedDataSource.PageSize = 24;

Last edited by Venkat : 08-04-2007 at 02:24 AM.
Reply With Quote