DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Bind List<T> To Drodown Box
// Bind list<T> to drodown box
public static List<string> WeekDays= new List<string> { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" };.
MyDropdownList.DataSource = Months;
MyDropdownList.DataBind();





