Re: jsp including another jsp

2007-08-30 Thread nmall
That's good, thanks. So I need specify the action tag inside the included file header.jsp?? Also, we want to simply store and get attributes from the session instead of executing an action each time for this header. We tried doing #session. but it doesn't work in the header, although it works i

Re: jsp including another jsp

2007-08-30 Thread Dave Newton
All you're doing is including a JSP via a standard JSP directive; no action is being executed. You might want to look at the tag [1]. d. [1] http://struts.apache.org/2.x/docs/action.html --- nmall <[EMAIL PROTECTED]> wrote: > > header is simply a jsp page called header.jsp. There > are tabs

Re: jsp including another jsp

2007-08-30 Thread nmall
header is simply a jsp page called header.jsp. There are tabs in the header page and that is being displayed correctly. This is our header page ( i have attached header1.jsp) <%@ taglib prefix="s" uri="/struts-tags" %> http://www.nabble.com/file/p12411297/header1.jsp header1.jsp Header

Re: jsp including another jsp

2007-08-30 Thread Dave Newton
--- nmall <[EMAIL PROTECTED]> wrote: > We are using Struts 2.0.6. We have a header.jsp > which is included in each of our jsp pages. > The header is tied to an action class to retrieve a > name etc to display (which changes depending on the > login). How is it "tied to an action class"? How are