I have some filter and one grid.And grid have some buttons like modify/edit.I am selecting some value from filters and getting some result in grid.now i want to modify some record.when i come again on grid data in filter should be remain same.
There is two pages.
one contain filters and grid
second contain modify details.
Thanks
Pankaj Pareek.
Then you need to store the selected filter values in Session, and reapply them when you re-render the page containing the filters. Or you could append some identifying details in the query string, but Session is the best way to go.
Edit: some useful links