How do you bind an Enum to a DropDownList control in ASP.NET?

后端 未结 25 2603
既然无缘
既然无缘 2020-11-29 15:41

Let\'s say I have the following simple enum:

enum Response
{
    Yes = 1,
    No = 2,
    Maybe = 3
}

How can I bind this enum to a DropDow

25条回答
  •  天涯浪人
    2020-11-29 16:22

    Both asp.net and winforms tutorial with combobox and dropdownlist: How to use Enum with Combobox in C# WinForms and Asp.Net

    hope helps

提交回复
热议问题