Hello,
I am not sure, but know that there are 2 ways to pass data from one page to the other, GET and POST. You will not be able to use the GET method as this relies on the url to pass data, you should use the POST method which can be used to pass files, but Ive never used it to pass an array and am not even sure if you can.
An alternative could be do declare the variables in one page that is included in both the jsp pages you wish to use, I have done this with primitive data types, not for the reasons you want to, but suffice to say the variable data was consistent accross pages.
|