vladimir lenin wrote:
I have a List of HashMaps (both the key and value are strings)List list=new ArrayList(); for(int i=0;i<10;i++) { Map map=new HashMap();for(int j=0;j<10;j++){ map.put("key"+j,"value"+j); } list.add(map); } This list is in an action form. what is syntax to get/set values in the map? What is the naming convention I should follow so that struts can populate the map values when we submit the form? thank you
http://struts.apache.org/struts-doc-1.2.x/userGuide/building_view.html#indexed --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

