摘要:
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; 阅读全文