在Repeater 的ItemDataBound 如何转换e.Item.DataItem 的类型

    技术2022-05-14  21

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

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

    2、DataReader绑定数据源时,用

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

    3、使用泛型做数据源时,则是泛型对应的类型,例如List<AttachFile> 为数据源,则

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


    最新回复(0)