I have such a scenario. The user enters some things in the form of jsp in the browser and submits. In the servlet, I process the request and show jsp page1 to the client who just continued the button. Now, by clicking continue, I want to forward this request to another jsp2 page with all the request parameter presented on page 1. basically, I want to get all the request parameters that were in the first request on page 2? I do not understand how I should go for this? I don’t think I can use jsp forward in accordance with my understanding that this will only work if we want to switch from jsp (on the server side) not on the client side?
source
share