Avatar

Level 10

Hi reddy,

you can add items to a dropdownlist using the addItem() method

dropDownList1.addItem(txtRegion.rawValue, txtRegion.rawValue);

or

dropDownList1.addItem(txtRegion.rawValue, dropDownList1.length.toString());

//The first param is the display value

//The second param is the bound value