Saving changed data in a text back to an Access DataBase (ASP.NET)

  • Thread starter Thread starter Wayne Taylor
  • Start date Start date
W

Wayne Taylor

Hi all!

I have a form, which populates a couple of text boxes when a user id is
entered and a button is hit.

I need to know how to save the text in the text boxes back to the database.

Also how do you count the number of records as bindingcontext doesn't seem
to work in ASP.NET

Thanks in advance.
 
On the simplest level, change the items in a DataSet and call update on its
DataAdapter. This is very maintainable, although not as shining in
performance (you are unlikely to see a major perf hit, however).

If this is not an option, you will have to create the update statements
yourself. If you do not want to update every field, you will have to track
which fields are dirty and which are not.


---

Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

***************************
Think Outside the Box!
***************************
 
Back
Top