我正在实施一个checkboxlist
,如果检查了任何项目\未选中,无论是哪一个,我都想发起一个事件。如何做到这一点,请帮助。
答案 0 :(得分:6)
根据MSDN
<asp:RadioButtonList id="RadioButtonList1"
OnSelectedIndexChanged="Index_Changed"
AutoPostBack="true"
runat="server"/>
void Index_Changed(Object sender, EventArgs e)
{
Label1.Text = "You selected " + RadioButtonList1.SelectedItem.Text +
" with a value of $" + RadioButtonList1.SelectedItem.Value +
".";
}
同样适用于CheckBoxList
。