binding a text box
Here's what i am trying to do:
I change the text in a text box and then press a button. I am assuming that these changes get reflected back to the dataset it is bound to(please tell me if this is not the case).
I send the dataset to a web service which updates it.
The code of the button looks like this:
dataset.acceptchanges();
webservice.updatechanges(dataset);
my webservice contains my data adapter which does the table update. Have i got the right idea or am i way off? Please help. Thanks.

