Here is a snippet code that helps you bind the items contained in an enumeration into a DropDownList in ASP.NET. To start with, let us define an enumeration as follows: public enum Directions { North = 1, East, South, West } The above is a C# definition