Use <%@ include file="filename" %> to include things like headers, footers, banners, other JSPs, etc. at translation time, or <jsp:include page="filename" flush="true" /> to include files that are non-programmatic (do not include scriplets) at request time (compiled).
Use <jsp:forward page="[URL]" /> to send JSP pages to JSP pages (or anywhere else); it works just like a RequestDispatcher(). Cheers! Mark -----Original Message----- From: R.C.Nougain Sent: Wednesday, December 19, 2001 7:50 AM Is there a way in JSP to send the output of one JSP to another to get the final display content. What I want is following JSP1 --> JSP2 --> HTML for Browser ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
