How do I trigger an update request in a data source control using a button? I have a data source with an update request configured in it. I just don't know what to add to the button_click event to fire it.
In your event handler, simply call the Update method for your Datasource control.
aha I need a parenthesis after the update command
sdsUpdateName.Update ();
I am getting an error when I call the data source update method
sdsUpdateName.Update;
As operator