asp.net中怎样才能获得checkboxlist中的被选中后给其他赋值???求大神帮助
<asp:CheckBoxListID="cbl1"runat="server"AutoPostBack="True"Width="171px"><asp:ListIte...
<asp:CheckBoxList ID="cbl1" runat="server" AutoPostBack="True" Width="171px"> <asp:ListItem Text="Word" Value="0"></asp:ListItem> <asp:ListItem Text="Excel" Value="1"></asp:ListItem> <asp:ListItem Text="Powerpoint" Value="2"></asp:ListItem> <asp:ListItem Text="FrontPage" Value="3"></asp:ListItem> <asp:ListItem Text="OutLook" Value="4"></asp:ListItem> <asp:ListItem Text="Window操作" Value="5"></asp:ListItem> </asp:CheckBoxList> 然后代码是 for ( i = 0; i < cbl1.Items.Count; i++) { if (cbl1.Items[i].Selected == true) { if (cbl1.Items[i].Value == " 0") doc = 1; else doc = 0; if (cbl1.Items[i].Value == "1") xls = 1; else xls = 0; if (cbl1.Items[i].Value == "2") ppt = 1; else { ppt = 0; } if (cbl1.Items[i].Value == "3") fpg = 1; else fpg = 0; if (cbl1.Items[i].Value == "4") outk = 1; else outk = 0; if (cbl1.Items[i].Value == "5") wdw = 1; else wdw = 0; } } 我的意思是想 如果被选中就给其赋值为1,然后传到数据库
展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询