Re: Best Practice pass data into an included jsp

2007-07-04 Thread Chris Pratt
You might look into the Tiles project (http://tiles.apache.org), that's exactly what it's designed to do. (*Chris*) On 7/4/07, Ezra Jennings <[EMAIL PROTECTED]> wrote: I tried using s:include with nested s:param tags, but could not read the parameters using the s:property tag at all. The onl

Re: Best Practice pass data into an included jsp

2007-07-04 Thread Ezra Jennings
I tried using s:include with nested s:param tags, but could not read the parameters using the s:property tag at all. The only way that I could read the parameter was by using: <%= "param1:" + request.getParameter("param1") %> as suggested in: http://www.nabble.com/struts2-how-to-access-a-param

Best Practice pass data into an included jsp

2007-06-11 Thread Scott Trafton
Here is the issue: I have a block of code that needs to be run on several different jsp's. Sometimes in a loop other times just once. The common code would be something like below File: callPassRow.jsp "> ... File: Random jsp's The calling code is the following. I am