如何将值从列表框传递到空下拉列表
本文关键字:下拉列表 列表 | 更新日期: 2023-09-27 18:33:05
我有一个包含一些字符串的listbox
...我想将这些字符串传递给空dropdownlist
?可能吗?只需选择listbox
中的值。
我不知道我在做什么..为此,我必须使用我仍然感到困惑的 for 循环。
这是我现在的代码:
string [] lines = new string [cartListBox.Items.Count];
int select;
for (int i = 0; i < lines.Length ; i++)
{
select = cartListBox.SelectedValue
watchedMoviesDropDownList.Items.Add(cartListBox.Items.Count.ToString());
}
但是,当我调试它时,它给了我一个错误,说索引超出了范围...... :(请帮忙....!
这样做要简单得多,您不需要:
string [] lines
也不:
int select
只需使用此代码:
for (int x = 0; x < cartListBox.Items.Count; x++)
watchedMoviesDropDownList.Items.Add(cartListBox.Items[x]);