首页 > 编程 > .NET > 正文

Repeater的ItemDataBound 事件中e.Item.DataItem 转换问题

2024-07-10 13:28:58
字体:
来源:转载
供稿:网友

1、使用DataSet和DataTable绑定数据源时

DataRowView view = (DataRowView)e.Item.DataItem;

2、DataReader绑定数据源时

System.Data.Common.DbDataRecord view = (System.Data.Common.DbDataRecord)e.Item.DataItem;

3、使用泛型做数据源时,则是泛型对应的类型。

例如 IList<DocumentInfo> 为数据源
DocumentInfo docInfo = (DocumentInfo)e.Item.DataItem;

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表