Re: Passing variables in url

2007-08-27 Thread Oleg Mikheev
Anna Simbirtsev wrote: I tried first assigning the value to a string and then sending it. <% String value_ = duf1.getValue(); %> Still does not work. You are assigning a value in a JSP class, but you should've assigned one in request, or page, or session context: <% request.setAttr

Re: Passing variables in url

2007-08-27 Thread Anna Simbirtsev
I tried first assigning the value to a string and then sending it. <% String value_ = duf1.getValue(); %> Still does not work. On 8/27/07, Oleg Mikheev <[EMAIL PROTECTED]> wrote: > > Anna Simbirtsev wrote: > > > > > width="80" height="20"border="0"/> > > > > value is a bean i

Re: Passing variables in url

2007-08-27 Thread Oleg Mikheev
Anna Simbirtsev wrote: value is a bean in struts, that has get/set functions. I think that value itself should be a String not a bean. From struts documents: paramName - The name of a JSP bean that is a String containing the value for the request parameter named by paramId They ar

Re: Passing variables in url

2007-08-27 Thread Antonio Petrelli
2007/8/27, Anna Simbirtsev <[EMAIL PROTECTED]>: > Hello > I am trying to pass a variable in the url, but I can't seem to get the value > to be passed. > > > width="80" height="20"border="0"/> > > value is a bean in struts, that has get/set functions. > > I tried using paramName="${value_}

Passing variables in url

2007-08-27 Thread Anna Simbirtsev
Hello I am trying to pass a variable in the url, but I can't seem to get the value to be passed. value is a bean in struts, that has get/set functions. I tried using paramName="${value_}" and pass a string, but it did not work. Thank you