Multiple columns data control

  • Thread starter Thread starter Cezar
  • Start date Start date
C

Cezar

Hi,

I need to display the content of an ArrayList on multiple columns, like

data1 data2 data3 data4
data5 data6 data7 data8
----
or

data1 data3 data5 data7
data2 data4 data6 data8
----
doesn't really matter.

There is out there a web control that let me do this and have control over
the number of rows and columns, ideally autoevaluate the available space and set the
number of columns ?

With a DataGrid I get only one column that using paging I can have it spread over
multiple pages but not spreading over the rows, if you understand what I
mean.

I looked over couple of books but I couldn't find a similar one.

Thank you,
Cezar
 
Use Datalist Control And set RepeatColumns Property to number of times you want the colums to be repeated
-Sushila
 
Back
Top