If I have the following enum
public enum EmployeeType { Manager = 1, TeamLeader, Senior, Junior }
and I have DropDownList
Even simpler:
ddl.DataSource = Enum.GetValues(typeof(EmployeeType));
Then to go back:
EmployeeType etSelected = (EmployeeType)ddl.SelectedValue;