Jun 29, 2006 #1 dhmfh Programmer Nov 28, 2005 69 GB I have a repeater that displays 20 photos. How do I get it to display 5 per row?
Jun 29, 2006 #2 guruasotra Programmer Jun 29, 2006 1 IT Dear friend try this you put manual paging here using pageddatasource class file Dim t As New PagedDataSource t.AllowPaging = True t.PageSize = 10 t.CurrentPageIndex = idx t.DataSource = ds Upvote 0 Downvote
Dear friend try this you put manual paging here using pageddatasource class file Dim t As New PagedDataSource t.AllowPaging = True t.PageSize = 10 t.CurrentPageIndex = idx t.DataSource = ds