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

后端 未结 25 2546
既然无缘
既然无缘 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:29

    That's not quite what you're looking for, but might help:

    http://blog.jeffhandley.com/archive/2008/01/27/enum-list-dropdown-control.aspx

提交回复
热议问题