Hi there,
Is there any way to get a GridViewRow's DataItem property in the handler for an arbitrary post-back??
All DataItems have values during the RowDataBound event, but are null in Button_Click for example, im assuming because the Grid is in the process of being databaound in the first event.
I do some formatting on the fly in RowDataBound so cannot retreive the original value from a particular cell using row.Cells[x].Text at any time after that, so im pretty sure i need the original DataItem. The DataItem is an Entity object.
Any ideas?