06 May 2011

Bind Enum to a DropDown

So, you have an enum defined as follows:
public enum Gender
{
        Male= 0,
        Female= 1
}
Code to Bind the Dropdown
string[] names = Enum.GetNames(typeof(Gender));
var values = (Gender[])Enum.GetValues(typeof(Gender));
for (int i = 0; i < names.Length; i++)
{
      DdlGender.Items.Add(new ListItem(names[i], values[i].ToString()));
}

2 comments:

  1. hey do you have any idea as to how can i get property names of a class??

    ReplyDelete

Your comments, Feedbacks and Suggestions are very much valuable to me :)

Things are upgraded

My Dear readers, I am really thankful for being supportive all these years. This site was the first blog site I ever created in my life...