Instead of:
Code:
ddSectorName.Items.Insert(0, "All")
ddSectorName.Items(0).Value = "%"
Try:
Code:
Dim newItem As ListItem
newItem.Text = "All"
newItem.Value = "%"

ddSectorName.Items.Insert(0, newItem)
DJ