Re: Composing a link

2005-07-30 Thread N G
2005 3:19 PM > To: user@struts.apache.org > Subject: Re: Composing a link > > N G wrote: > > only allows 1 map and 1 param-value pair. However, I need > > to add 2 params besides the map. > > > > Adding this param to the map is not an option, I don't think.

Re: Composing a link

2005-07-30 Thread N G
I'll give that a try. At this point, I ended up just using the 'page' attribute like this: personId= then used the with page, name and so on attributes to get the existing attributes populated as a Map within the form. Thanks for your help though. I'll do it your way if it works. I think it's c

RE: Composing a link

2005-07-29 Thread GP
so much , all to generate a stupid link. -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Friday, July 29, 2005 3:19 PM To: user@struts.apache.org Subject: Re: Composing a link N G wrote: > only allows 1 map and 1 param-value pair. However

Re: Composing a link

2005-07-29 Thread Laurie Harper
You can do it with JSP tags, no scriptlets required. Try something like this (I haven't tested it, but experiment a bit if it doesn't work quite as written here): ... L. N G wrote: How do you push the 2 parameters into the Map? You mean using a scriptlet? I want to avoid any type of st

Re: Composing a link

2005-07-29 Thread N G
How do you push the 2 parameters into the Map? You mean using a scriptlet? I want to avoid any type of straight Java code in my page. Is there a way to push those parameters into the map using JSTL? Thanks, NG On 7/29/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > N G wrote: > > only allows 1 m

Re: Composing a link

2005-07-29 Thread Laurie Harper
N G wrote: only allows 1 map and 1 param-value pair. However, I need to add 2 params besides the map. Adding this param to the map is not an option, I don't think. I generate my map inside the form bean. The data for the 2 extra params is not available in the form and is only available on the p

Composing a link

2005-07-29 Thread N G
Hi, only allows 1 map and 1 param-value pair. However, I need to add 2 params besides the map. Adding this param to the map is not an option, I don't think. I generate my map inside the form bean. The data for the 2 extra params is not available in the form and is only available on the page. Ho