An alternative to maps for multiple dynamic parameters would be helpful.
Could you provide some representative examples of using the tag with
iterate, and the HTML rendered?
I imagine the one provide would generate
<a href="request.do?action=read&docref=55363">This is the link for the
rquest.</a>
-- Ted Husted, Husted dot Com, Fairport NY USA.
-- Custom Software ~ Technical Services.
-- Tel 716 737-3463.
-- http://www.husted.com/about/struts/
> Eric Fesler wrote:
> In a recent project, we had to face quite often the fact that we
> wanted to use a <html:link> tag with multiple request parameters. I
> know that this tag allows the use of a Map with all the parameters.
> However, we found its usage quite difficult specially when the
> <html:link<> tag was embedded in a <logic:iterate> tag and when the
> request parameters were dynamic.
> <hm:link href="request.do">
> <hm:paramlink name="action" value="read" />
> <hm:paramlink name="docref" value="55363" />
> This is the link for the request.
> </hm: