views:

27

answers:

1

I have a gridview (Edit and Delete enabled) that shows a table. A Text Box and A Button. When I type something in the textbox and click the button, the button runs the datasource.filterexpression and filters out the rows.

The question whenever I click on the edit button after the filter has been applied The grid auto resets back to the original table? How can I solve this?

A: 

After saving the edited record in the GridView RowUpdating event, re-apply the filter and call DataBind()

Daniel Dyson
Thank you, It gave me a hint on how to solve the problem
George