i'm trying to create a dynamic hyperlink using
struts (v1.2.8) and JSTL as below:
<html:link action="MyGenericLink">
<fmt:message key="cancel.button"/>
</html:link>
I want to ensure that MyGenericLinkis whatever the user passes in in the request (in a request parameter called link eg)
i'm trying to
<html:link action="<%= request.getParameter(�link�) %>">
<fmt:message key="cancel.button"/>
</html:link>
this doesnt seem to work, is there a handier way? maybe JSTL only? can someone provide me with a code sample if pos?