Jun 29, 2006 #1 dhmfh Programmer Joined Nov 28, 2005 Messages 69 Location 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 Joined Jun 29, 2006 Messages 1 Location 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