2
例如,我有下面的類聲明的實例:您可以將包含Dictionary屬性的對象綁定到下拉列表嗎?
public class Person
{
public string Name = "";
public Dictionary<string, string> Properties = new Dictionary<string, string>();
}
我有,我想綁定到一個Asp.NET下拉列表中的人的名單。
List<Person> people = new List<Person>();
//fill the list etc..
//bind to the drop down list
ddlPeople.DataSource = people;
ddlPeople.DataTextField = "Name";
ddlPeople.DataTextField = "Properties['Age']"; //this is what I would like!
年齡總是存在。我無法控制人員課程。有誰知道我想要做的是可以實現的嗎?
謝謝!