2

CheckBoxList をジェネリック リスト オブジェクトにバインドする方法。このサンプル コードは、次の目的で機能するはずです。

protected void Page_Load(object sender, EventArgs e)
{
    // Works well with the datatable as a data source
    //DataTable _entityList = new DataTable();
    //_entityList.Columns.Add("Id", typeof(int));
    //_entityList.Columns.Add("ProductName", typeof(string));
    //_entityList.Rows.Add(new object[] { 1, "First" });
    //_entityList.Rows.Add(new object[] { 2, "Second" });

    // Doesn't work with the generic list as a data source
    List<MyProduct> _entityList = new List<MyProduct>();
    _entityList.Add(new MyProduct(1, "First"));
    _entityList.Add(new MyProduct(2, "Second"));

    cblProducts.DataSource = _entityList;
    cblProducts.DataTextField = "ProductName";
    cblProducts.DataValueField = "Id";
    cblProducts.DataBind();
}

public class MyProduct
{
    public int Id;
    public string ProductName;
    public bool selected;

    public MyProduct(int id, string desc, bool slctd)
    {
        this.Id = id;
        this.ProductName = desc;
        this.selected = slctd;
    }

    public MyProduct()
    {
        // TODO: Complete member initialization
    }
}

しかし、それは実行時例外をスローしています:

DataBinding: 'Test.MyProduct' には、'ProductName' という名前のプロパティが含まれていません。

私は何が欠けていますか?トピックをグーグルで検索しましたが失敗しました。

4

1 に答える 1

5

フィールドをプロパティに変更します。

public class MyProduct
{
   public int Id { get; set; }
   public string ProductName { get; set; }
   public bool selected { get; set; }

   ...
}
于 2013-05-16T11:53:15.983 に答える