-
viewstate
Hi,
from a search.aspx I get redirected to edit.aspx
I would like to be able to go back to the search.aspx and when i do I would like to see the values in the search as they were before I was redirected to edit.aspx
How can I do this please?
The controls in search.aspx have enableviewstate property set to true but when I click on the back button from edit.aspx then the previous search values are not there.
Thanks
-
Re: viewstate
try adding ViewState="true" to your page directive.
Also, make sure you are not using response.cachecontrol="no-cache"
-
Re: viewstate
where do I add this please?