0

你能给我一个线索如何做到这一点吗?我有一个DropDownList,那DropDownList是装满的ListItems。之后DropDownList,有一个Button叫做ADD NEW。单击按钮时,会打开一个弹出窗口。如果某个项目不在 中DropDownList,我想添加它。在弹出框窗口中有一个TextBox和添加Button

基本上,如果一个项目不在DropDownlist我想通过单击添加新按钮来添加它。

4

2 回答 2

1

在弹出窗口中,当您输入项目并按添加按钮时,只需执行以下步骤:

 1. Iterate through all the elements in dropdown and check if item you want to add exist or not
 2. If item does not exist then add it to dropdown using this code:
     yourDropdown.items.Add(newitem);
于 2012-06-20T11:51:07.960 回答
1

下面一行的东西......

string newItem = textbox1.Text;
if(ddlMyList.Items.FindByText(newItem) == null) //Means item not found
    {
    ddlMyList.Items.Add(new ListItem(newItem));
    }
于 2012-06-20T11:48:36.120 回答