foreach (UserType ut in Enum.GetValues(typeof(UserType)))I think, you like this post. Let me know if you have any issues.
{
ListItem item = new ListItem(Enum.GetName(typeof(UserType), ut), ((int)ut).ToString("D"));
ddlUserType.Items.Add(item);
}
The Best Cars Gallery,Audi Car,Ford Car,Holden Car,Datsun Car,Opel Car,Kia Car,Honda Car,Suzuki Car,Yamaha Car,Ferrari,Sport Car,Opel Car,Lexus,Bugatti
bind Enum to drop down list in ASP.NET
This the question asked by so many people around me and I also faced issues couple of times of my early stages of learning.This is simple but, how to get value and names as a collection and bind to drop down list is a bit difficult. Below is the simple logic to read all enums and create a list item and bind to drop down list. [There are many ways to get this done, but I believe below is the best way.]
No comments:
Post a Comment