ASP.NET Gridview Not Getting New Values In RowUpdating() Event
Assuming in your row updating event, you do some editing in your textbox and then click update button. The event in turn saves your modified records to the database. However, when you tried rebinding the datasource of
Gridview it seems that you didn't get the newly updated values.
The simple trick would be to set the Gridview property EnableViewState to false.
The simple trick would be to set the Gridview property EnableViewState to false.
Comments
Post a Comment