You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/05/24 15:36:14 UTC

DO NOT REPLY [Bug 9386] New: - JSP Include ignoring parameter

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9386>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9386

JSP Include ignoring parameter

           Summary: JSP Include ignoring parameter
           Product: Tomcat 4
           Version: 4.0.3 Final
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Unknown
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: klaus.mutzbauer@moresophy.de


test.jsp:
<html>
<head><title>title</title></head>
<body>

<jsp:include page="header.jsp">
<jsp:param name="testparam" value="1"/>
</jsp:include>

<br>
BODY
<br>

</body></html>


header.jsp:
<%
java.util.Enumeration enum = request.getAttributeNames();
while( enum.hasMoreElements() ) 
{
out.println( enum.nextElement() );		
}
%>

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>