Re: html:link passing multiple parameters

2004-02-16 Thread phortonpeg
:[EMAIL PROTECTED] Sent: Monday, 16 February 2004 2:10 PM To: Struts Users Mailing List Subject: Re: html:link passing multiple parameters There's also the use of c:url. The catch there is that if you incude the resulting url in a html:link, it will be double contexted, which means you should

RE: html:link passing multiple parameters

2004-02-15 Thread Nick Faiz
I did something along those lines using Struts-EL. c:set var=concernType value=${project.progressConcernType} scope=request/ jsp:useBean id=paramMap class=java.util.HashMap / c:set target=${paramMap} property=projectIdentifier value=${project.projectIdentifier} / c:set target=${paramMap}

Re: html:link passing multiple parameters

2004-02-15 Thread Adam L
] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Sunday, February 15, 2004 4:39 PM Subject: RE: html:link passing multiple parameters I did something along those lines using Struts-EL. c:set var=concernType value=${project.progressConcernType} scope=request/ jsp:useBean id=paramMap class

RE: html:link passing multiple parameters

2004-02-15 Thread Nick Faiz
Thanks Adam - that's good to know. -Original Message- From: Adam L [mailto:[EMAIL PROTECTED] Sent: Monday, 16 February 2004 2:10 PM To: Struts Users Mailing List Subject: Re: html:link passing multiple parameters There's also the use of c:url. The catch there is that if you incude