yes, my controls are bounded.
For example, i have a dropdownlist and a textbox.
I fill them with data retrieved from the DB.
when the user click the SAVE button, i read back the current data and pass them to an update stored.
If the user select another item in ddl or modify the textbox' content, i'd like to have some way to "efficiently" notify me that a change occurred.
how can i do that with dataset? I think i should update my dataset first each time user changes something and then check the HasChanges property, but this means i have to handle all control's "OnChange" event. Am i wrong?