2012-06-20 108 views
0

能否請你給我一個線索如何做到這一點?我有一個DropDownList,即DropDownList充滿ListItems。在DropDownList後,有一個名爲添加新Button。點擊按鈕後,會打開一個彈出窗口。如果一個項目不在DropDownList中,我想添加它。在彈出框窗口中有一個TextBox並添加ButtonDROPDOWNLIST與按鈕時,按一下按鈕彈出打開

基本上,如果一個項目不在DropDownlist我想通過點擊添加新項目按鈕。

+1

[你嘗試過什麼(HTTP ://mattgemmell.com/2008/12/08/what-have-you-tried/)? –

+0

@TimSchmelter我打算寫這段代碼,但在此之前,我已經問過正確的方向了。 – Learner

回答

1

以下行的東西...

string newItem = textbox1.Text; 
if(ddlMyList.Items.FindByText(newItem) == null) //Means item not found 
    { 
    ddlMyList.Items.Add(new ListItem(newItem)); 
    } 
1
在彈出,當你進入項目,然後按Add按鈕

只是做以下步驟:

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);