G
Guldo K
Hello
I need some help...
I have a repeater; its source is a dataview based on a datatable of a
dataset.
The aspx page creates a radiobuttonlist for each item in the repeater:
<asp:Repeater>
<ItemTemplate>
<asp:RadioButtonList ... DataSource='<%#
GetDataView(Databinder.Eval(Container.DataItem, "myField") %>' ... >
....
where GetDataView returns a dataview, based on "myField", and "myField"
belongs to the first dataview.
(the DataSource property of the Repeater is set in the C# code)
Question:
Whenever the user clicks on an element of a RadioButtonList, I need to
know which row of the repeater is the current one, that is, what's the
current value of "myField".
How can I?
Thanks ^^
I need some help...
I have a repeater; its source is a dataview based on a datatable of a
dataset.
The aspx page creates a radiobuttonlist for each item in the repeater:
<asp:Repeater>
<ItemTemplate>
<asp:RadioButtonList ... DataSource='<%#
GetDataView(Databinder.Eval(Container.DataItem, "myField") %>' ... >
....
where GetDataView returns a dataview, based on "myField", and "myField"
belongs to the first dataview.
(the DataSource property of the Repeater is set in the C# code)
Question:
Whenever the user clicks on an element of a RadioButtonList, I need to
know which row of the repeater is the current one, that is, what's the
current value of "myField".
How can I?
Thanks ^^