Archive for Agosto 13th, 2008

Binding Dropdown to an Enumerater

CodeKeep C# Feed Agosto 13th, 2008

Description:

Link: http://www.codekeep.net/snippets/dfded7b1-933c-4109-99a9-5c87357594f0.aspx

 foreach (string item in Enum.GetNames(typeof(SearchType)))
        {
            int value = (int)Enum.Parse(typeof(SearchType), item);
            ListItem listItem = new ListItem(item, value.ToString());
            cboModeList.Items.Add(listItem);
        }