posted 17 years ago
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