I haven¹t tried it but I suspect that if you use a list it should work. Something like this: <s:url id="xurl" value="a.b" includeParams="get" escapeAmp="false"> <s:param name="pn" value="'#{firstval¹,¹secondVal¹,¹thirdVal¹}'" /> </s:url>
Z. > > On Fri, 06 Aug 2010 17:12:10 -0400, François Rouxel <rouxe...@yahoo.com> > wrote: > >> > should be working, did you put in s:url tag includeParameters='get' ? >> > > > Yes, although I don't think that's what includeParams is used for - here's > my actual code: > > <s:url id="xurl" value="a.b" includeParams="get" escapeAmp="false"> > <s:param name="pn" value="'firstval'" /> > <s:param name="pn" value="'secondval'" /> > <s:param name="pn" value="'thirdval'" /> > </s:url> > > URL 1: <s:property value="xurl"/> > > > and here's the result: > > URL 1: a.b?pn=thirdval > > I'm using Struts 2.0.11 > > Steve