求详细代码
当选中checkbox时赋值为1,不选中checkbox赋值为0,并且组成序列代码
如:1010101001(用checkboxlist也行)
1 回答
料青山看我应如是
TA贡献1772条经验 获得超8个赞
前端:
<form id="form1" runat="server">
<div>
<asp:CheckBoxList ID="cblTest" runat="server">
<asp:ListItem>A</asp:ListItem>
<asp:ListItem>B</asp:ListItem>
<asp:ListItem>C</asp:ListItem>
<asp:ListItem>D</asp:ListItem>
<asp:ListItem>E</asp:ListItem>
<asp:ListItem>F</asp:ListItem>
</asp:CheckBoxList>
<br />
<asp:Button ID="btnCV" runat="server" Text="Go" onclick="btnCV_Click"/>
</div>
</form>
后台:
protected void btnCV_Click(object sender, EventArgs e)
{
string value = "";
for (int i = 0; i < cblTest.Items.Count; i++)
{
value += cblTest.Items[i].Selected ? "1" : "0";
}
Response.Write(value);
}
效果:
- 1 回答
- 0 关注
- 432 浏览
添加回答
举报
0/150
提交
取消