M mianiro Feb 27, 2007 #1 Is it possible to dynamically get the datafield item that populates a column in gridview? Something like grid.columns(0).????
Is it possible to dynamically get the datafield item that populates a column in gridview? Something like grid.columns(0).????
E Eliyahu Goldin Feb 27, 2007 #2 If you handle RowDataBound event, DataItem property points you to the datasource item bound to the row. You can typecast it to your datasource type and access the datasource fields or properties.
If you handle RowDataBound event, DataItem property points you to the datasource item bound to the row. You can typecast it to your datasource type and access the datasource fields or properties.