循环 <asp:CheckBoxList ID="cb_law" 选中得值
for (int i = 0; i < cb_law.Items.Count; i++)
{
if (cb_law.Items[i].Selected == true)
{
strBx += cb_law.Items[i].Text + ",";
}
}