Per the following listing - I am appending a parameter value to a URL.
The "href" version works fine but would like to perform the equivalent
using the "html:link" tag.

The "html:link" version results in:

/ReferenceWeb/acknowledgePost.do?org.apache.struts.taglib.html.TOKEN=<%=
token%>  

Any help with syntax is appreciated.

--- Begin Listing ---

<%
String token =
(String)
request.getSession().getAttribute(org.apache.struts.Globals.TRANSACTION_
TOKEN_KEY);
%>
<p>
<a
href="/ReferenceWeb/acknowledgePost.do?org.apache.struts.taglib.html.TOK
EN=<%=token%>">
        <bean:message key="personAcknowledge.link.another" />
</a>
</p>
<p>
<html:link
page="/acknowledgePost.do?org.apache.struts.taglib.html.TOKEN=<%=token%>
">
        <bean:message key="personAcknowledge.link.another" />
</html:link>
</p>

Reply via email to