I want to set selecteditem for asp. net dropdownlist control programmatically.
So I want to pass a value to the dropdownlist control to set the selected item where is the item equal to the passed value.
|
I want to set selecteditem for asp. net dropdownlist control programmatically. So I want to pass a value to the dropdownlist control to set the selected item where is the item equal to the passed value. |
||||
|
Assuming the list is already data bound you can simply set the
The value of the UPDATE:
If the value of |
||||
|
|
|
ddlData.SelectedIndex will contain the int value.To select the specific value into dropdown
return type of ddlData.Items.IndexOf(ddlData.Items.FindByText("value")); is int value. Thanks |
||||
|
|
|
Here is the code I was looking for: option one: DDL.SelectedIndex = DDL.Items.IndexOf(DDL.Items.FindByText("PassedValue")); option two: DDL.SelectedIndex = DDL.Items.IndexOf(DDL.Items.FindByValue("PassedValue")); |
|||
|
|
Well if I understood correctly your question. The Solution for setting the value for a given dropdownlist will be:
This will work only if the value is existing in the data-source of the dropdownlist. |
||||
|
|
myList.SelectedValue = someStringValue;? – kbrimington Aug 16 '10 at 19:16