Passing a dynamic attribute value to a JSP custom tag
843835Nov 6 2002 — edited Nov 6 2002I want to pass a request parameter to a custom tag for processing. Something like this:
<ct:converter amount="<%= request.getParameter("amount") %>" />
But from what I've read of the JSP 1.2 spec this can't be done. Only translation time parameters - i.e. fixed values can be passed. Is this true? Is there some common work around?