Getting CheckBoxList Item values

前端 未结 8 716
野的像风
野的像风 2021-01-04 10:53

I have a CheckBoxList which I\'m populating with data. When I attempt to retrieve the checked items from the list I can only grab the item ordinal, I cannot get the value.

8条回答
  •  执笔经年
    2021-01-04 11:09

    You can try this:-

    string values = "";
    foreach(ListItem item in myCBL.Items){
    if(item.Selected)
    {
    values += item.Value.ToString() + ",";  
    }
    }
    values = values.TrimEnd(',');  //To eliminate comma in last.
    

提交回复
热议问题