This code snippet shows you how to sort a repeater web form control. This is handy when you are using scrollable repeater tables.
DataView dv = ds.Tables[0].DefaultView; dv.Sort = "firstname asc"; rptUsers.DataSource = dv;
No related posts.
Thanks very much, saved me hours of work!
NICE! I have been looking for something like this for a long time! thanks
You must be logged in to post a comment.
Thanks very much, saved me hours of work!
NICE! I have been looking for something like this for a long time! thanks