• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problem with html:link paramName and paramId

 
Ranch Hand
Posts: 40
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a HashSet(users) in the session scope.

I need to generate hyperlinks dynamically with the parameters in the HashSet

following is the code..



<logic:iterate name="users" id="usr" scope="session">

<html:link action="/updateuser.do" paramId="user" paramName="user" paramProperty="userId"><bean:write name="usr" property="userId"/></html:link>
</logic:iterate>


I am able to print the userId and the same value is not generating to the parameter.


How can I bulid the hyperlink dynamically?

Thanks
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<logic:iterate name="users" id="usr" scope="session">

<html:link action="/updateuser.do" paramId="user" paramName="usr" paramProperty="userId"><bean:write name="usr" property="userId"/></html:link>
</logic:iterate>

paramName should be "usr" isnt it??.
 
reply
    Bookmark Topic Watch Topic
  • New Topic