当前位置: 代码迷 >> ASP.NET >> |M| GridView中的RowType.Footer 中怎么来得到绑定的数据
  详细解决方案

|M| GridView中的RowType.Footer 中怎么来得到绑定的数据

热度:2367   发布时间:2013-02-25 00:00:00.0
|M| GridView中的RowType.Footer 中如何来得到绑定的数据
如果是DataRow的话可以用:
if   (e.Row.RowType   ==   DataControlRowType.DataRow)
{
        DataRowView   drv   =   (DataRowView)e.Row.DataItem;
        DataView   dv   =   drv.DataView;

--------------
但当是RowType.Footer的时候要怎么来取当前的绑定数据

谢谢

------解决方案--------------------------------------------------------
sf
------解决方案--------------------------------------------------------
RowType.Footer不绑定
------解决方案--------------------------------------------------------
Foot也有模板的啊
------解决方案--------------------------------------------------------
DataControlRowTypeFooter 不支持绑定数据
------解决方案--------------------------------------------------------
这个好象不能帮顶吧
------解决方案--------------------------------------------------------
可以手工修改RowType.Footer添加数据
------解决方案--------------------------------------------------------
DataControlRowType.Footer 不支持绑定数据
------解决方案--------------------------------------------------------
既然不支持了, 根本就不提供数据项给 footer , 也就无法在 footer 中得到数据源项