We have an include problem in iPlanet 4.1.
We have a JSP page that uses <jsp:include> WITH parameters
to include other JSP pages, it doesn't seem to work.
Because when we removed those parameters, it works.
This is the very easy sample we have:
include.jsp
<HTML>
<jsp:include page="jspincludetarget.jsp">
<jsp:param name="username" value="stephen" />
</jsp:include>
<br>
Go on ...
</HTML>
includetarget.jsp
<HTML>
User name is:
<%= request.getParameter("username") %>
</HTML>
Anything we miss ???
Thanks in advance.
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets