如何根据Checkboxlist(ASP.net 3.5)中的选定项目触发事件,Checkboxlist中的OnSelectedIndexChanged返回所有选定项目的列表,我只需要知道当前所选项目。
答案 0 :(得分:0)
为什么复选框列表不会返回所有选中的复选框?复选框列表的性质是可以同时选择多个。
如果您只想要一个项目,那么radioButtonList或DropDownList可能会更合适吗?
http://msdn.microsoft.com/en-us/library/1wd7hsyy(v=VS.85).aspx
Protected void DropDownList1_SelectedIndexChanged(object sender,
System.EventArgs e)
{
Label1.Text = "You selected " + DropDownList1.SelectedItem.Text;
}
随意测试CheckBoxList.SelectedItem,但措辞并没有明确表明它具有与RadioButtonList或DropDownList相同的功能。
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.listcontrol.selecteditem.aspx
答案 1 :(得分:0)