DataItem property of DataGridItem, RepeaterItem, DataListItem,GridViewRow

  • Thread starter Thread starter Jeremy
  • Start date Start date
J

Jeremy

In all of my cases, the DataItem property of DataGridItem, RepeaterItem,
DataListItem,GridViewRow contain a DataRowView. When will they contain a
different type, and what types can they be?
 
the type will depend on what you are datasource binding to. when you use
something besides a DataView (say a string[]), you will get a different type
in DataItem.

-- bruce (sqlwork.com)
 
Back
Top