Showing records as a Table format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi I have a SqlDataReader getting 1000 records from a table and showing it
into a DataGrid (via binding)

It looks like

Rec1
Rec2
Rec3
......

What ideas can you give me to show it like a table (rows an columns)

Rec1 Rec2 Rec3 Rec4
Rec5 Rec6 Rec7 Rec8
....

thkns
 
Hi,

you could use DataList control to achieve this. You can tweak it's repeat
direction and repeat column count.

DataGrid is always table like from top-to-down.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top