本文介绍了如何获得选定的项目计数在asp:checkboxlist中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个复选框列表控件
i have a checkboxlist control
<asp:CheckBoxList ID="chkselectedItems" Font-Size="12px" runat="server">
</asp:CheckBoxList>
并且我在其上动态创建了listitems.如果我从复选框列表中检查了多个项目,那么我如何使用asp.net获取所选项目的计数
and i created listitems on it dynamically.If i checked more than one item from the checkbox list, How i get the selected item count using asp.net
谢谢
推荐答案
编辑
int numSelected = 0;
foreach (ListItem li in chkselectedItems.Items)
{
if (li.Selected)
{
numSelected = numSelected + 1;
}
}
Response.Write("Total Number Of CheckBoxes Selected:");
Response.Write(numSelected);
上
public string[] CheckboxListSelections(System.Web.UI.WebControls.CheckBoxList list)
{
ArrayList values = new ArrayList();
for(int counter = 0; counter < list.Items.Count; counter++)
{
if(list.Items[counter].Selected)
{
values.Add(list.Items[counter].Value);
}
}
return (String[]) values.ToArray( typeof( string ) );
}
这篇关于如何获得选定的项目计数在asp:checkboxlist中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!