Pass data between multiple pages
We have requeement to implement several pages in forms like manner (using forms is out of the scope).
On one page user (anonymous) could fill in some data and by clicking next he could be redirected to another page to enter more data or read some info and continue to next page in the line...
User can go back and forth. On the last page, data that user entered on the previous pages will be used for calculation, maybe generate some graph...
We could use http session (obviously no caching on dispatcher), maybe cookie if we don't break size limit...
We plan to minimize use of jscript, so using browser local storage is no option.
I would like to hear other approaches that could allow us to pass data between pages.
Thank you


