Fill Dataset to DetailsViews in run time

  • Thread starter Thread starter Jason Huang
  • Start date Start date
J

Jason Huang

Hi,

In the C# .Net 2.0,I would like to fill data from a Dataset to a DetailsView
in the run time.
The DetailsView seems to me like a Table that combines lots of Cells.
Thanks for advice.


Jason
 
Hi,

In the C# .Net 2.0,I would like to fill data from a Dataset to a DetailsView
in the run time.
The DetailsView seems to me like a Table that combines lots of Cells.
Thanks for advice.

Jason

Depends on the schema/structure of DetailsView. You can loop through
the rows in the DataTable in DataSet and assign the values. Here we
need to see whether a mappping is there between actual datatable and
detailsview.
 
Back
Top