I want to bind the DataTextField property of a ASP.NET drop down control to a property of an object that is a property of the initial data source. How would I accomplish that particular task.
Drop down data source data schema
public class A
{
public string ID { get; set; }
public B { get; set; }
}
public class B
{
public string Name { get; set; } //want to bind the DataTextField to this property
}
ASP.NET code behind
DropDownList MyDropDownList = new DropDownList();
List<A> MyList = GetList();
MyDropDownList.DataSource = MyList;
MyDropDownList.DataValueField = "ID";
GetListreturns a list of 5 A's and each of these 5 A's contains a list of 5 B's, are you expecting your DropDownList to have 5 items (1 for each A) or 25 items (1 for each B in each A)? – 300 baud Apr 19 '11 at 19:57