AppendDataBoundItems
Definition:
Using this you can append dynamically.
Examplestring[] sdss ={ "test", "test1" };
this.myDropDown.AppendDataBoundItems = true;
this.myDropDown.Items.Add(new ListItem("Bitte wählen...", ""));
this.myDropDown.DataSource = sdss;
this.myDropDown.DataBind();
output
Bitte wählen
test
test1