Posted By:
Christopher_Schultz
Posted On:
Wednesday, December 26, 2001 05:55 AM
How are you getting from one page to the next? Are you forwarding? Are you redirecting?
If you are redirecting, or need to get this Vector for multiple requests, then use the session as the previous response suggests.
If you are only processing a forward, consider using the request itself as storage space:
1.jsp:
request.setAttribute("myVector", vector);
2.jsp:
(Vector)request.getAttribute("myVector");
Good luck,
-chris