HI, I have a list box in my jsp file. When the user click the submit button, the id and value of all the elements in the list box should be passed to next jsp. In the next jsp I have to get the same in the next jsp and use it Can it be done by using Javascript or any otherway? If you have idea please let me know.
you can put the id's and values in a Map, and put the Map in session-scope (if id's and values are the same for every user, you could even put them in application-scope)