I have done some research, and majority of the examples I have found use forms (obviously for user input) to collect data which is then passed to another JSP page through th
There are a few ways to pass information from one JSP page to another.
Simply write the data to an input field within a form with the type 'hidden', e.g.
Data written thus will get posted back when the relevant form is submitted. This can be a useful way to 'carry along' information as the user fills out a series of dialogs as all state is user side and the back and forward buttons will work as expected.
Attach parameters to URLs in links on the page, e.g.