I have a jsp page which contains ten variables which I have to forward it to another page when user clicks a button. One way to achieve this is to append those to the url and send it, but I am not sure whether the number of variables may increase. Is there anyway that I can transfer these variables?
Share
If these values come from form input elements, put them in a form and use a proper submit button.
If these are simply variables for application logic, put them into the session or some other context that persists across requests.