是否可以在列表框中选择所有按钮?有什么想法如何实现呢?感谢。
答案 0 :(得分:1)
// Set - SelectionMode="Multiple" for your ListBox and then do
protected void LinkButton1_Click1(object sender, EventArgs e)
{
foreach (ListItem li in ListBox1.Items)
{
li.Selected = true;
}
}
样品可在以下地址获得: http://forums.asp.net/t/1241640.aspx/1
和 http://www.aspnet101.com/2008/01/listbox-select-allselect-none/
答案 1 :(得分:0)
您可以按以下方式选择所有ASPxListBox项目:
<dx:ASPxListBox ID="lb" runat="server" ClientInstanceName="lbClient" SelectionMode="CheckColumn">
</dx:ASPxListBox>
<强>客户端:强>
lbClient.SelectAll();
服务器强>
lb.SelectAll();