In a JSP with scriptlets, you can use Maps in exactly the same way as plain
java. Just remember that they're stored in the session.
<% Map m = (Map)session.getAttribute("myMap");
m.put("inputName", inputValue);
%>
If you're using scriptless JSPs, you can either use beans or store the values in the map inside a
servlet before forwarding to the next JSP.
-Yuriy
[ August 24, 2005: Message edited by: Yuriy Zilbergleyt ]