能否請你給我一個線索如何做到這一點?我有一個DropDownList
,即DropDownList
充滿ListItems
。在DropDownList
後,有一個名爲添加新Button
。點擊按鈕後,會打開一個彈出窗口。如果一個項目不在DropDownList
中,我想添加它。在彈出框窗口中有一個TextBox
並添加Button
。DROPDOWNLIST與按鈕時,按一下按鈕彈出打開
基本上,如果一個項目不在DropDownlist
我想通過點擊添加新項目按鈕。
能否請你給我一個線索如何做到這一點?我有一個DropDownList
,即DropDownList
充滿ListItems
。在DropDownList
後,有一個名爲添加新Button
。點擊按鈕後,會打開一個彈出窗口。如果一個項目不在DropDownList
中,我想添加它。在彈出框窗口中有一個TextBox
並添加Button
。DROPDOWNLIST與按鈕時,按一下按鈕彈出打開
基本上,如果一個項目不在DropDownlist
我想通過點擊添加新項目按鈕。
以下行的東西...
string newItem = textbox1.Text;
if(ddlMyList.Items.FindByText(newItem) == null) //Means item not found
{
ddlMyList.Items.Add(new ListItem(newItem));
}
只是做以下步驟:
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);
[你嘗試過什麼(HTTP ://mattgemmell.com/2008/12/08/what-have-you-tried/)? –
@TimSchmelter我打算寫這段代碼,但在此之前,我已經問過正確的方向了。 – Learner