Iterating images with Repeater

  • Thread starter Thread starter Daves
  • Start date Start date
D

Daves

I'm listing photos of people, a total of 30-50. The images are listed as
"cubes inside a box" (don't know how to explain better!) that is

5x5
6x6
7x10

or whatever the size of the image is. Doing this with span elements, even
using float=right, is very diffcult becase the elements overlap and do crazy
things. So table came to my mind but then how do I create a Repeater which
creates a new TR element say, each 5th item???
 
Use DataList. You can setup the number of items in one row in RepeatColumns
property.
 
Back
Top