Re: How to pass a request variable to a frame set

2005-01-04 Thread brenmcguire
In fact there could be another solution. You could extend the tag, by adding an attribute that propagates the request parameters. In fact can use a java.util.Map to create the URL query parameters but it cannot use the "current" parameters. Normally you have to do this way: where "nameOfTheMap

Re: How to pass a request variable to a frame set

2005-01-04 Thread fzlists
There's no way to do it that is Struts-specific, uhh, unless I'm wrong :) You have to think about what is happening on the browser when PlanAction.java completes and fowards... The response is returned to the browser, Offerings.jsp. This page loads content, Plan.jsp. So, as far as the browser

How to pass a request variable to a frame set

2005-01-04 Thread Krishna Mohan Radhakrishnan
Hi all, I have a java clas called PlanAction.java. I am forwarding to a JSP called Offerings.jsp. But Offerings.jsp contains a frameset which include another JSP called Plan.jsp. I need the request attribute set in the PlanAction.java to be available in the Plan.jsp. I found that request attri