How does one build simple html links that contain all parameters from a
form?

There is of course the brute force method:

  <c:url value="/search" var="url">
    <c:param name="x" value="${form.x}"/>
    <c:param name="y" value="${form.y}"/>
    ...
  </c:url>

I assume there is a better way, something along the lines of

  <html:link action="/search" property="form"/>

Any ideas?


--
Eric Jain


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to