3

我正在实施一个checkboxlist,如果任何项目被选中\未选中,无论它是哪个,我都想发起一个事件。这是怎么做到的,请帮忙。

4

1 回答 1

5

根据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

于 2013-08-28T11:36:39.357 回答