With the following link tag <html:link forward="Foo" ...
what is a good way to pass a java.util.Map to paramId and paramName
without writing a scriplet in the JSP page? Any tricks?
I need to render the href as:
/do/Foo?param1=value¶m2=value
and would rather not:
<%
Hashtable params = new Hashtable();
params.add("param1","value");
params.add("parap2","value");
%>
Ben
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
