checkboxlist选择的值怎么一下子显示呢
我想让我的checkboxlist选中的时候,就在文本框中显示,(如果选中时,在去掉,那么文本框中就没有值)假如代码是这样的
<form id="form1" runat="server">
<asp:CheckBoxList ID="CheckBoxList1" runat="server" RepeatColumns="2"
Width="200px">
<asp:ListItem>张三</asp:ListItem>
<asp:ListItem>李四</asp:ListItem>
<asp:ListItem>王五</asp:ListItem>
<asp:ListItem>陈六</asp:ListItem>
<asp:ListItem>丁七</asp:ListItem>
<asp:ListItem>赵八</asp:ListItem>
</asp:CheckBoxList>
<p>
<asp:TextBox ID="TextBox1" runat="server" Width="90px"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" Width="90px"></asp:TextBox>
<asp:TextBox ID="TextBox3" runat="server" Width="90px"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Height="33px" Text="随机选" Width="81px" />
</p>
</form>
第一个问题:当我勾选任意一个名字的时候,就会随时在下面的文本框中显示(最多可选择三个,选择第四个时选不了)
第二个问题:当我选择随机选的时候,出现随机的三个名字,这三个名字要在checkboxlist中选中。。。
各位大侠帮帮忙了哎!做了一天了,都没做出来呢!