4 Replies Latest reply on Oct 17, 2007 7:13 PM by cry4dawn

    jsp include not working

    swisst

      I am using the bundled version of JBoss Portal Server, v2.6.1

      Specifically, passing a parameter while using jsp include does not work. Here is the scenario:

      Page 1

      <jsp:include page="page2.jsp">
       <jsp:param name="param1" value="param1value"/>
      </jsp:include>
      


      Page 2
      <%= request.getParameter("param1")%>
      


      This results in 'null' being printed out instead of the expected 'param1value'....any ideas?