M
Mr. X.
How can I capture a radio button list click event (code behind) ?
<asp:RadioButtonList ID="radList" runat="server"
RepeatDirection="Horizontal">
....
</asp:RadioButtonList>
************
What I did is (on code behind) :
radList_OnSelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
Handles radList.SelectedIndexChanged
.....
, but it doesn't work.
Thanks
<asp:RadioButtonList ID="radList" runat="server"
RepeatDirection="Horizontal">
....
</asp:RadioButtonList>
************
What I did is (on code behind) :
radList_OnSelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
Handles radList.SelectedIndexChanged
.....
, but it doesn't work.
Thanks