动态绑定复选框

【动态绑定复选框】动态绑定复选框,选中某个复选框获取数据ID值
前台代码:


























全选 内容




后台代码:
protected void btnSelect_Click(object sender, EventArgs e)
{
bool result = true;
//遍历repeater控件的itemtemplate模版
foreach (RepeaterItem item in Repeater1.Items)
{
CheckBox cb = (CheckBox)item.FindControl("ckSelect"); //根据控件id获得控件对象,ckSelect是checkBox控件的id
if (cb.Checked == true)
{
//获取id记录,cb.ToolTip里存放的就是记录id
string controlName = cb.ID; //控件名称
string id = cb.ToolTip; //绑定数据ID值
}
}
}

    推荐阅读