5

DataTextFieldASP.NETドロップダウンコントロールのプロパティを、初期データソースのプロパティであるオブジェクトのプロパティにバインドしたいと思います。その特定のタスクをどのように達成しますか。

ドロップダウンデータソースデータスキーマ

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コードビハインド

DropDownList MyDropDownList = new DropDownList();
List<A> MyList = GetList();

MyDropDownList.DataSource = MyList;
MyDropDownList.DataValueField = "ID";
4

4 に答える 4

12

Aのリストがあり、A.IDをIDフィールドにし、ABNameをNameフィールドにしたい場合、B.Nameに直接バインドすることはできないため、Aに新しいプロパティを作成してプルする必要があります。 AのBプロパティから名前を付けるか、Linqを使用して、次のように匿名型を作成できます。

List<A> ListA = new List<A>{
    new A{ID="1",Item = new B{Name="Val1"}},
    new A{ID="2", Item =  new B{Name="Val2"}} ,          
    new A{ID="3", Item =  new B{Name="Val3"}}};

DropDownList1.DataTextField = "Name";
DropDownList1.DataValueField = "ID";
DropDownList1.DataSource = from a in ListA
                           select new { ID, Name = a.Item.Name };
于 2011-04-19T19:43:01.663 に答える
0

クラスからASP.netのドロップダウンをバインドする2つの例を次に示します。

あなたのaspxページ

    <asp:DropDownList ID="DropDownListJour1" runat="server">
    </asp:DropDownList>
    <br />
    <asp:DropDownList ID="DropDownListJour2" runat="server">
    </asp:DropDownList>

aspx.csページ

    protected void Page_Load(object sender, EventArgs e)
    {
    //Exemple with value different same as text (dropdown)
    DropDownListJour1.DataSource = jour.ListSameValueText();            
    DropDownListJour1.DataBind();

    //Exemple with value different of text (dropdown)
    DropDownListJour2.DataSource = jour.ListDifferentValueText();
    DropDownListJour2.DataValueField = "Key";
    DropDownListJour2.DataTextField = "Value";
    DropDownListJour2.DataBind();     
    }

jour.csクラス(jour.cs)

public class jour
{

    public static string[] ListSameValueText()
    {
        string[] myarray = {"a","b","c","d","e"} ;
        return myarray;
    }

    public static Dictionary<int, string> ListDifferentValueText()
    {
        var joursem2 = new Dictionary<int, string>();
        joursem2.Add(1, "Lundi");
        joursem2.Add(2, "Mardi");
        joursem2.Add(3, "Mercredi");
        joursem2.Add(4, "Jeudi");
        joursem2.Add(5, "Vendredi");
        return joursem2;
    }
}
于 2013-02-23T01:44:33.440 に答える
0
    cmb_category.DataSource = cc.getCat(); //source for database
    cmb_category.DataTextField = "category_name";
    cmb_category.DataValueField = "category_name";
    cmb_category.DataBind();
于 2013-02-15T09:14:21.037 に答える
0

重要なDataBind行がすべて欠落しています。

MyDropDownList.DataBind();
于 2015-06-25T09:11:32.917 に答える