摘要: 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 docInfo = (DocumentInfo)e.Item.DataItem; 阅读全文
posted @ 2014-01-06 17:02 mingli 阅读(432) 评论(0) 推荐(0) 编辑