How to forward HashMap from jsp to jsp
843835Dec 3 2001 — edited Dec 4 2001Please help me on how to forward a hashmap object from a jsp to another jsp.
the from jsp looks like this:
<form action="BAqueryResult.jsp" method=post>
...
request.setAttribute("ResultMapDataObject", ResultMapDataObject);
I am not sure how the to jsp page should be?
Map qr = (Map)request.getAttribute("ResultMapDataObject");
Thanks
kenny