Re: using set-property in forward tag

2004-06-28 Thread Bill Siggelkow
Then just add it on to the ActionForward returned from the Action ... You can use the following method to do this: protected ActionForward appendParam( String name, String value, ActionForward forward) { StringBuffer path = new

Re: using set-property in forward tag

2004-06-28 Thread nikhil walvekar
Hi, But my value will be dynamic in nature. Nikhil --- Bill Siggelkow <[EMAIL PROTECTED]> wrote: > Hi Nikhil, >It sounds like what you really want to do is set > add a request > parameter name-value pair to the query string of the > URL. If so, then > you can add these values directly i

Re: using set-property in forward tag

2004-06-28 Thread Bill Siggelkow
Hi Nikhil, It sounds like what you really want to do is set add a request parameter name-value pair to the query string of the URL. If so, then you can add these values directly in the definition of the foward and still set redirect = "true" ... The example below passes two parameters to Act