See data in a DataSet

  • Thread starter Thread starter Alberto
  • Start date Start date
A

Alberto

I execute a Select sentence using a SqlDataAdapter object and a fill a
DataSet object. After doing this I set the DataSource property of a DataGrid
to the value of the DataSet but in the DataGrid I see an hiperlink to the
table but I want to see Data. How can I do it?

Thank you.
 
Set the DataMember property of the DataGrid to the table name of DataTable in the DataSet.
 
Back
Top