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
}" varStatus="loopStatus"> > > > > > > action="/StartBuyPolicy?x=${webProduct.id}&y=${webProduct.name}"> > > Buy product > > > > > > > > > > HTH > > mc > > > > > > On 20 Oct 2005 at 19:56, Jadel

Re: html:link and jstl

2005-10-20 Thread Jadeler
> items="${webProductList}" varStatus="loopStatus"> > > action="/StartBuyPolicy?x=${webProduct.id}&y=${webProduct.name}"> > Buy product > > > > > HTH > mc > > > On 20 Oct 2005 at 19:56, Jadeler wrote: >

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 expres

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 itera

html:link and jstl

2005-10-20 Thread Jadeler
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 Any help is appreciated. Thanks. Jadeler

Mixing html:link and jstl

2004-09-30 Thread andy wix
Hi, I am trying to use an html:link tag in place of the 'a' tag in the code below so that I can use the transacation=true attribute to allow tokens to work. The code sits within a jstl forEach loop so thats how it gets the index. // working code test // end working code From the html tags ap