Data

D

devo

All-

I need to format my datagrid so that each row within the datagrid shows
two rows of data from the underlying dataset. Basically it is to reduce
the length of the resulting html page.


The ItemDataBound event on the datagird fires for each bound row which
doesn't help me- does anyone have any ideas on how I can end up with my
desired result- illustrated so fantastically below :)) ?

datagrid:
-----------------------------------------
info A | info B
info C | info D

.....and so on


thanks

devo
 
G

Guest

The DataGrid is designed to display data in a tabular format using an HTML
Table. Each record bound to the DataGrid is shown in a single table row.

In order to display data in more flexible format, it's better to use
DataList or Repeater.

HTH

Elton Wang
 

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

Top