-
WriteBack DataBinding
Hi,
My question is about databinding.
I have seen many examples that show me how to get data from my DataSet into a textbox, that use either inline code on the .aspx file or properties of the textbox in a code-behind page.
Is there a single step method that can not only take data from a dataset and display it in a control, but also writes any user changes back to the dataset.
Currently, I have to read the properties of my webform controls and write the data back to the datasource on a page postback. I was hoping that there was a simpler/more intelligent way than this long hand method.
-Drew