Re: How to pass Jstl param implicit Object to html:link

2005-06-23 Thread Jose María
Hi, Thanks for your replies but I have not get pass the Map to action, if have you any suggestion to re pass current parameters to another action in the same jsp, please send me. Thank you in advance¡¡ El mar, 21-06-2005 a las 12:48 -0400, Laurie Harper escribió: 'params' is a JSTL implicit

Re: How to pass Jstl param implicit Object to html:link

2005-06-21 Thread Laurie Harper
'params' is a JSTL implicit object; I don't think it's required to be bound to a bean in any scope. Also, the 'name' attribute is looking for the name of a bean, not a value. You'll need to bind the request parameter map to a name in some scope first I think, something like: bean:define

Re: How to pass Jstl param implicit Object to html:link

2005-06-21 Thread Zarar Siddiqi
Make sure params is of type java.util.Map. - Original Message - From: Laurie Harper [EMAIL PROTECTED] To: user@struts.apache.org Sent: Tuesday, June 21, 2005 12:48 PM Subject: Re: How to pass Jstl param implicit Object to html:link 'params' is a JSTL implicit object; I don't think

Re: How to pass Jstl param implicit Object to html:link

2005-06-21 Thread Laurie Harper
param implicit Object to html:link 'params' is a JSTL implicit object; I don't think it's required to be bound to a bean in any scope. Also, the 'name' attribute is looking for the name of a bean, not a value. You'll need to bind the request parameter map to a name in some scope first I think