hi all,

does struts have equivalent jstl tag of c:url like
<c:url value="http://acme.com/exec/register"; var="myUrl">
  <c:param name="name" value="${param.name}"/>
  <c:param name="country" value="${param.country}"/>
</c:url>
<a href='<c:out value="${myUrl}"/>'>Register</a>

but the tag attribute "value" replaced with "action" so that it looks
like
<someTag:url action="someAction" var="myUrl">
  <c:param name="name" value="${param.name}"/>
  <c:param name="country" value="${param.country}"/>
</someTag:url>
so its similar with struts html:link but with the ease of putting
parameter in the body of tag, instead of creating a parameter map to
combine more than 1 parameter?
or can the html:link accept html parameter in it's body tag (which AFAIK
can't)?


thanks,

bdr.

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

Reply via email to