使用DataBinder.Eval </string>绑定到List <string>

时间:2010-09-03 16:28:02

标签: c# asp.net databinder

我有以下对象:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

我正在使用asp.net 3.5中的GridView构建动态交叉表网格

我希望为动态列1绑定CellContents [0],动态列2绑定CellContents [1](动态列0是CrossTabDataObject的RowName字段)等等。我正在使用:

object boundValueObj = null;
Control ctrl = (Control)sender;
IDataItemContainer dataItemContainer = (IDataItemContainer)ctrl.NamingContainer;
boundValueObj = DataBinder.Eval(dataItemContainer.DataItem, strSelectedID);

此代码位于gridview的InstantiateIn函数中,因为我在交叉表的每个单元格中创建下拉列表模板。

我有代码(未显示)根据正在创建的列设置strSelectedID。

当strSelectedID等于动态列[0]的“RowName”时,DataBinder.Eval函数正常工作并按预期设置boundValueObj。当strSelectedID设置为“CellContents [n]”时,问题就出现了,其中n是列索引。

DataBinder.Eval仅适用于对象的属性和字段。我该如何解决这个问题?

谢谢,

富。

1 个答案:

答案 0 :(得分:0)

好的 - 我的愚蠢错误!

改变:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents = new List <string>();
   //Constructor..... etc.

}

为:

CrossTabDataObject
{
   string RowName{get;set;};
   int RowId{get;set;}
   List<string> CellContents{get;set;}
   //Constructor
   public CrossTabDataObject()
   {
     CellContents = new List<string>();
   }

}

发挥了重要作用。换句话说,我将CellContents作为该类的属性。