displaying data

  • Thread starter Thread starter Rod Snyder
  • Start date Start date
R

Rod Snyder

I am not having trouble setting up datagrids and returning data, but I'm at
a loss in how to take a dataset and return individual items from it at
various points of the aspx page.
Do you do it through a label, panel?

What I am trying to do is have in html a heading like
Listing 1
(return field1 from table here)
html html html
(return field 2 from table here)
html html html
(return 3rd field from table here)

Any direction would be appreciated.
Rod
 
y dont u use several datagrids and use the same dataset to databind...?

to do this, u have to remove "auto generate columns" of the datagrid and set
the column manually.
use the same dataset for the page.

listing 1
/// datagrid1 .... assign the first row of the dataset.
html html html
/// datagrid2 .... assign the first row of the same dataset.
html html html
/// datagrid3 .... assign the first row of the same dataset.

hope this helps,
CMA
 
Back
Top