Search results for query: *

  • Users: Bird
  • Order by date
  1. B

    adding data to a dropdownlist already containing items

    Use this code to add any number of items to your dropdownlist after you have binded to it: mydropdownlistID.Items.Insert(0, New ListItem("Select One", 0)) The first argument is the selectedIndex, the second is the Text of the ListItem and the Value of the ListItem. This should allow you to...
Back
Top