问关于listbox控件的相关问题
我想问一下,我的程序运行后,先从数据库里面的一张表中取回一列值放到listbox控件里,接下来是想实现在两个listbox控件相互移动选中项的操作,移动按钮的代码也写了,...
我想问一下,我的程序运行后,先从数据库里面的一张表中取回一列值放到listbox控件里,接下来是想实现在两个listbox控件相互移动选中项的操作,移动按钮的代码也写了,应该没问题,可是为什么不能实现移动呢?我很模糊,请高手指点一下,下面是代码:
<asp:ListBox ID="TargetListBox" runat="server" Width="357px" Height="204px"
SelectionMode="Multiple"
onselectedindexchanged="TargetListBox_SelectedIndexChanged">
</asp:ListBox>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="<<<" OnClick="Button1_Click" />
</td >
<asp:ListBox ID="SourceListBox" runat="server" Width="357px" Height="204px" > </asp:ListBox> 大体上就是这样,格式可能有误,不过那没关系,先说明问题,下面是后台代码:其中在page_load中已经实现了将数据库中的一张表中一列值绑定到SourceListBox控件里,可是我在单步调试的时候,它根本不执行Button1_Click()里面的Add和Remove(),请问这是为什么呢?
protected void Button1_Click(object sender, EventArgs e)
{
if (SourceListBox.SelectedValue != "")
{
if (TargetListBox.Items.Contains(SourceListBox.SelectedItem) == false)
{
TargetListBox.Items.Add(SourceListBox.SelectedItem);
}
SourceListBox.Items.Remove(SourceListBox.SelectedItem);
}
}
</td>
</tr>
<tr>
<td>
<asp:Button ID="Button2" runat="server" Text=">>>" OnClick="Button2_Click" /> 展开
<asp:ListBox ID="TargetListBox" runat="server" Width="357px" Height="204px"
SelectionMode="Multiple"
onselectedindexchanged="TargetListBox_SelectedIndexChanged">
</asp:ListBox>
</td>
<td>
<asp:Button ID="Button1" runat="server" Text="<<<" OnClick="Button1_Click" />
</td >
<asp:ListBox ID="SourceListBox" runat="server" Width="357px" Height="204px" > </asp:ListBox> 大体上就是这样,格式可能有误,不过那没关系,先说明问题,下面是后台代码:其中在page_load中已经实现了将数据库中的一张表中一列值绑定到SourceListBox控件里,可是我在单步调试的时候,它根本不执行Button1_Click()里面的Add和Remove(),请问这是为什么呢?
protected void Button1_Click(object sender, EventArgs e)
{
if (SourceListBox.SelectedValue != "")
{
if (TargetListBox.Items.Contains(SourceListBox.SelectedItem) == false)
{
TargetListBox.Items.Add(SourceListBox.SelectedItem);
}
SourceListBox.Items.Remove(SourceListBox.SelectedItem);
}
}
</td>
</tr>
<tr>
<td>
<asp:Button ID="Button2" runat="server" Text=">>>" OnClick="Button2_Click" /> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询