Hi,
I have a pretty common issue that unfortunately haven't found any viable solution for.
In my asp web form, I have a DropDownList inside a repeater control.
What I'd like to do is populate the DropDownList with a list of options obtained from a SqlDataSource. Currently I'm using the DataBind method for this.
What I'd like to do then, is bind a column/row from the underlying DataSet (from the repeater control) to the DropDownList.
The reason for that is, that I'd like when the user changes the selected item in the DropDownList that it would reflect on the DataSet, making use of RowState, GetChanges methods.
I remember doing this in the old .NET v.1.1 with the CurrencyManager class. But being 4-5 years ago, I can hardly remember how.
Thanks in advanced.