I have the need for a dropdownlist with the U.S. states in it. I could need this dropdownlist on various pages. Instead of always having to create a listitem for each state, I want a simple control. I don't want a UserControl - I want to extend the existing dropdownlist control. I know I have done this before at a previous employer, but for the life of me I can't remember how to do it!
Can't I just do something like this for each state? If so, where?
MyBase.Items.Add(New ListItem("Illinois","IL"))
Any ideas out there?
Thanks