Enum definition:
public enum Categories
{
Wildlife,
Resorts,
Beer,
Other
}
To tie to DropDownList called ddCategory:
ddCategory.DataSource = Enum.GetNames(typeof(Categories));
ddCategory.DataBind();
To set the selected value:
ddCategory.SelectedValue = Enum.GetName(typeof(grr.Categories),1) // or just "Wildlife"