How do I set an item in a DropDownList as the default value in ASP.NET?
SomeDropDownList.DataSource =GetSomeStrings();
|
How do I set an item in a DropDownList as the default value in ASP.NET?
|
|||
|
|
|
There are two ways to do it:
|
|||
|
|
|
Set the |
|||
|
|
|
You can bind the DropDownList to the data source, and then set the SelectedValue:
You could also select the default item by index, using the SelectedIndex property:
|
||||
|
|