----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Apologies for incorrect information in my previous posting.
JSP does indeed have ways to compute -- at runtime -- the URL of a page to
include. You can use
<jsp:include page=<%= myURL%> >
or
<% pageContext.include(myRelativePath); %>
There is still an issue that servlet containers cannot be too strict about
implementing the spec for response.setContentType method, because JSP
implementations like GNUJSP are going to call it repeatedly if you include
.jsp pages.
--
Cris Perdue
Impact Online, Inc.
http://www.volunteermatch.org
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]