I need to fill a drop down list from dataset while looping in dataset
how to do it like below?
for each row in dataset
Me.dropdown1.ExtendedItems.Add("Choose a location...")
next
without using
dropdown1.DataSource = ds.Tables("TableName")
dropdown1.DataBind()
thanks in advance
Go to the complete details ...