Bind Textbox back to a Dataset

  • Thread starter Thread starter Nicholas Paldino [.NET/C# MVP]
  • Start date Start date
N

Nicholas Paldino [.NET/C# MVP]

Mike,

If you have bound the textboxes to the data set, then when you make
changes to the text boxes, the data set is updated as well. If you want to
update the data source that the data set came from, then you need to get the
data adapter and pass the data set to the Update method on that data
adapter.

Hope this helps.
 
I have a dataset that has one table retrieving one row and I have that
infromation bound to Textboxes. After the information is changed in the
text boxes, I am having trouble updating the dataset. All tutorials relate
to datagrids or datalists.

What steps do I need to do to get the information from Textboxes back to the
dataset for updating?

Mike.
 
Back
Top