Re: dynamic key/value parameters in the request url with struts/tiles

2006-07-27 Thread Laurie Harper
Better yet, put the key/value pairs into a Map and store it as a request attribute: Map values = new HashMap(); values.put("key1", "value1"); ... request.setAttribute("values", values); Then just access the values from the map in your JSP. L. Monkeyden wrote:

Re: dynamic key/value parameters in the request url with struts/tiles

2006-07-27 Thread Monkeyden
The TilesRequestProcessor appears to do an exact text match, to determine whether its a tile or not, so with a querystring it won't work. To get around it you could overrride that method in a subclass. On 7/27/06, prasad pondugula <[EMAIL PROTECTED]> wrote: Hello all, In struts/tiles environ

dynamic key/value parameters in the request url with struts/tiles

2006-07-27 Thread prasad pondugula
Hello all, In struts/tiles environment, how to pass dynamic key/value parameters from an action class? I know way of setting dynamic key/values from action class but it is not working with tiles. Let me be more clear. 1). TestAction.java: in execute() method, based on some logic, we might