Suresh Sundar
Success is journey, not a destination, always.
Friday, 31 August 2012
assign enum value to dropdownlist
foreach (var item in typeof(enum).GetFields())
{
if (item.FieldType == typeof(enum))
ddlProfile.Items.Add(new ListItem { Text = item.Name, Value = item.GetRawConstantValue().ToString() });
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment