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 __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]