我正在尝试将下拉列表(从sql server填充的列表)中的项目添加到asp.net(Web表单)的列表框中。第一项毫无疑问添加,仅此而已。从下拉菜单中选择第二项时,什么也没有发生。这是下拉菜单的SelectedIndexChanged事件中使用的代码:
下拉菜单和列表框都将AutoPostBack设置为true。还需要做什么?不应该这么简单吗?
protected void DropDownList_SelectedIndexChanged(object sender,
EventArgs e)
{
listBox.Items.Add(DropDownList.SelectedItem);
}
<asp:DropDownList ID="DropDownList" runat="server"
EnableViewState="true" AutoPostBack="true"
OnSelectedIndexChanged="DropDownList_SelectedIndexChanged"
Visible="true"></asp:DropDownList>
<asp:ListBox runat="server" ID="listBox" CssClass="form-control"
AutoPostBack="true" EnableViewState="true"></asp:ListBox>
我需要将选中的每个项目添加到列表框中,而不仅仅是第一个项目。
答案 0 :(得分:0)
在你的事件将文本转换成字符串。
protected void DropDownList_SelectedIndexChanged(object sender, EventArgs e)
{
listBox.Items.Add(DropDownList.SelectedItem.ToString());
}
或者,如果您还有其他任何问题,请告诉我。