展开全部
if (checkBoxA.checked==true)
{
...............
}
多个就逐个判断。。。。。。
{
...............
}
多个就逐个判断。。。。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string GetCheckString()
{
string strCheck = "";
foreach (Control cl in this.groupBox1.Controls)
{
if (cl is CheckBox)
{
if (((CheckBox)cl).Checked == true)
{
strCheck += "'" + ((CheckBox)cl).Text + "',";
}
}
}
if (strCheck == "")
{
return strCheck;
}
else
{
return strCheck.Remove(strCheck.Length - 1);
}
}
{
string strCheck = "";
foreach (Control cl in this.groupBox1.Controls)
{
if (cl is CheckBox)
{
if (((CheckBox)cl).Checked == true)
{
strCheck += "'" + ((CheckBox)cl).Text + "',";
}
}
}
if (strCheck == "")
{
return strCheck;
}
else
{
return strCheck.Remove(strCheck.Length - 1);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好,这个是我用到的方法,你稍加修改就可以用到你那里去了,不明白可以问我,代码如下:
foreach (RepeaterItem item in this.Repeater1.Items)
{
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
CheckBox cb = item.FindControl("CB") as CheckBox;
if (cb.Checked)
{
Literal literal=item.FindControl("Literal1") as Literal;
message += literal.Text+"|";
}
}
}
foreach (RepeaterItem item in this.Repeater1.Items)
{
if (item.ItemType == ListItemType.Item || item.ItemType == ListItemType.AlternatingItem)
{
CheckBox cb = item.FindControl("CB") as CheckBox;
if (cb.Checked)
{
Literal literal=item.FindControl("Literal1") as Literal;
message += literal.Text+"|";
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询