• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

access hashmap in jsp

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am displaying a hashmap from my form bean and then the user has the option to select any value and
corresponding data related to that value will be displayed to the user on the next page.
My problem is since the values are being displayed in hashmap, how do i knw which value the user has selected
without using a radio or a checkbox button.

<logic:iterate id="iterateArchiveData" name="FileUpload"
property="archiveData">


<html:link page="/archivePublication.do" onclick="archive()">
<bean:write name="iterateArchiveData" property="key" /></html:link>
  (<bean:write name="iterateArchiveData" property="value" />)


</logic:iterate>


archiveData is the hashmap. what code to write in archive() so as to find out the key that the user has clicked.
 
Sheriff
Posts: 67756
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Please be sure to ask Struts questions in the Struts forum. I have moved this post there for you.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic