Q: reading data grid

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

Guest

Hello,
I have a DataGrid1 object in my asp.net web application, it has 5 columns
and it shows data retrieved from a table. That part is ok, I see all the
data. I am quite new and I succeeded that much. Now I want to take 1st and
3rd column from the grind and append it into another table in my database.
How should I do this?
Thanks,
Jim.
 
The trick is to get the data from the underlying datasource (ie DataSet,
DataTable, whatever).
You won't have much luck trying to get it directly from the DataGrid
control.
 
Thanks you very much for reply. Can you give me example how should I read 1st
and 3rd columns in dataset?
 
Back
Top