
You have an 'Enum' defined as follows:public enum CompanyAddressType { Unknown = 0, Primary = 1, Warehouse = 2, Distribution_Center = 3, Cross_Dock = 4 }You want to iterate through the list and put the data into an asp.net DropDownList.Here is the simple code:protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string[] names = Enum.GetNames(typeof...