Showing multiple JSPs per view?
Hi!
My project consists of multiple JSPs building up an output, e.g. main,jsp, menu.jsp, header.jsp, etc.
Is it possible to define a view-state showing [n] JSPs in order?
Regards,Jen
I'm not really sure I know what you mean. If you are talking about the same request as far as the user is concerned, you just refer to your main resulting .jsp file in the Web Flow, and then have that .jsp include the other files using the following tag:Code:
lt;%@ include file=quot;/path/to/jsp/files/include_some_file.jspquot; %gt;
So your 'main.jsp' file will include 'header.jsp' and 'menu.jsp' using the above.
-Tortuga |