Re: html:link and jstl

2005-10-21 Thread Martin Gainty
Users Mailing List" Sent: Friday, October 21, 2005 1:32 AM Subject: Re: html:link and jstl Jadeler wrote: http://localhost:8080/testapp/StartBuyPolicy.do? x=${webProduct.id&y=${webProduct.productType} The above link seems to be coming from this: action="/StartBuyPolicy

Re: html:link and jstl

2005-10-21 Thread Jadeler
Thanks Wendy. I just needed that library (since im using servlet 2.3 spec) and now it works. Jadeler --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > Jadeler wrote: > > > http://localhost:8080/testapp/StartBuyPolicy.do? > > x=${webProduct.id&y=${webProduct.productType} > > The above link seems

Re: html:link and jstl

2005-10-20 Thread Wendy Smoak
Jadeler wrote: http://localhost:8080/testapp/StartBuyPolicy.do? x=${webProduct.id&y=${webProduct.productType} The above link seems to be coming from this: action="/StartBuyPolicy?x=${webProduct.id}&y=${webProduct.name}"> Buy product What version of the Servlet Specification are you wor

Re: html:link and jstl

2005-10-20 Thread Murray Collingwood
None. How about you Laurie? Kind regards mc On 20 Oct 2005 at 23:42, Jadeler wrote: > Hey MurrayI tried what you suggested but the > values dont seem to be resolving. The link becomes > > http://localhost:8080/testapp/StartBuyPolicy.do;jsessionid=8DE06461ADFCD864AF7CD 5657A1C1DFD?x=${web

Re: html:link and jstl

2005-10-20 Thread Jadeler
Hey MurrayI tried what you suggested but the values dont seem to be resolving. The link becomes http://localhost:8080/testapp/StartBuyPolicy.do;jsessionid=8DE06461ADFCD864AF7CD5657A1C1DFD?x=${webProduct.id}&y=${webProduct.productType} Im not too sure why I cant output the values. I can prin

Re: html:link and jstl

2005-10-20 Thread Laurie Harper
Jadeler wrote: Im having problems trying to build my url using html:link and jstl. Im iterating over a list using jstl and I want to pass in the id to the url. Currently, im doing this: Buy product I want to do something like this: Buy product you've got your JSTL expressions nes

Re: html:link and jstl

2005-10-20 Thread Murray Collingwood
Hi Jadeler Fortunately it's simpler than that... you don't need all that scriptlet stuff. Try this and see if it works. Buy product HTH mc On 20 Oct 2005 at 19:56, Jadeler wrote: > Im having problems trying to build my url using > html:link and jstl. Im iterating over a list usi