RE: assigning a JSP variable a value coming from

2009-07-11 Thread Farshad Rabbani
Hi Musachy, I appreciate the assistance, it worked. -Farshad > Date: Fri, 10 Jul 2009 13:08:00 -0700 > Subject: Re: assigning a JSP variable a value coming from > From: musa...@gmail.com > To: user@struts.apache.org > > do something like: >

Re: assigning a JSP variable a value coming from

2009-07-10 Thread Musachy Barroso
do something like: then in your scriplet, get a reference to the page context (cant remember the API) and do a getAttribute("myId") on it. musachy On Fri, Jul 10, 2009 at 12:20 PM, Farshad Rabbani wrote: > > Hi Everyone, > > > > > I am trying to create a java variable in the jsp scriplet and a

assigning a JSP variable a value coming from

2009-07-10 Thread Farshad Rabbani
Hi Everyone, I am trying to create a java variable in the jsp scriplet and assign it a value coming from tag so for example <% int id = ; %> I know the above is completely incorrect, but essentially, that is what I want to accomplish. Can anyone give me