You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by Benjamin Tomasini <bt...@neteverything.com> on 2002/06/12 19:12:51 UTC

Best way to pass java.util.Map to

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&param2=value

and would rather not:

<% 

Hashtable params = new Hashtable();
params.add("param1","value");
params.add("parap2","value");

%>


Ben




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>