Is it possible to take an Array or ArrayList or some similarly ordered data, and bind it to a DataGrid, DataList, Repeater?Any object that implements the IEnumerable interface can be data bound. This includes Arrays, any Collection type class (ArrayLists, Queus, Stacks, etc.), DataReaders, DataSets, XML collections, etc.Does that also mean that they can be loop through? like:<BR><BR>For Each obj In Objects<BR> 'do something<BR>Loop<BR>