| Author |
Problem with html:link paramName and paramId
|
Pramod Kumar
Ranch Hand
Joined: Oct 05, 2007
Posts: 40
|
|
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
|
 |
Ranjit Gopinathan
Ranch Hand
Joined: Jul 03, 2007
Posts: 46
|
|
<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??.
|
 |
 |
|
|
subject: Problem with html:link paramName and paramId
|
|
|