Tag Archives: generic list

Bind Generic List to ASP.NET DropDownList Example

Let us suppose you had a simple class of tags that you wanted to bind to an ASP.NET DropDownList control. public class TagDetails { private int tagID; public int TagID { get { return tagID; } } private string tagName; … Continue reading

Posted in ASP.NET | Tagged , | 1 Comment