Adding an OnClick Event to a RadioButtonList ListItem
Wednesday, November 22nd, 2006The ASP.NET RadioButtonList does not provide a declarative way to attach the onclick attribute to a ListItem. However, it can be done using the OnDataBound event handler. This is useful in a scenario where you have a TextBox that you would like to populate with the user’s RadioButtonList SelectedValue. In this example, [...]