28th

James:

I found a solution to our view state problem for that case. You can disable view state for individual datagrid items ie. individual rows. By default I disable all the rows by looping:
Private Sub DisableDataGridColsViewState(ByVal dg As DataGrid)
For Each dgi As DataGridItem In dg.Items
dgi.EnableViewState = False
Next
End Sub
Then when they click edit you enable the view state for that one row.
you will then be able to findcontrols on the update
Delete will work since the ID's are stored in the data grid data keys property which is stored in view state.

Also, I need prospect.

Hours

Tommorrow should be around 8,9 to 2
Testing
Postings
footimage