function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mak OneMak One 

How to go back to previous Page as it is (means whatever was there in text field it should be there,..)

I have a search page where user use to search for products. There are lot of check boxes which help to perform correct search.
So, as user clicks on 1 product in search result next page is displayed with details of that particular code.
I have to create 1 back button from which previous search page will display with search result with chackboxes checked however they were, text fields have values whatever there was.  I don't want to use Query String.
Are there any other ways?
Ankit AroraAnkit Arora

1) Why don't you open the product in new window, I hope that will solve your problem.

2) If you don't want to go with first option then you have you tried using JS for back like "goBack()"

3) If not 1st and 2nd then you can use cookies where you can save the user selections and use it but I won't recommend this.