DescriptionInclude a servlet's output (result of servlet or a JSP page). Note: Any additional params supplied to the included page are not accessible within the rendered page through the <ww:property...> tag! Parameters
Example<-- One: --> <ww:include value="myJsp.jsp" /> <-- Two: --> <ww:include value="myJsp.jsp"> <ww:param name="param1" value="value2" /> <ww:param name="param2" value="value2" /> </ww:include> <-- Three: --> <ww:include value="myJsp.jsp"> <ww:param name="param1">value1</ww:param> <ww:param name="param2">value2<ww:param> </ww:include> Example one - do an include myJsp.jsp page Example two - do an include to myJsp.jsp page with parameters param1=value1 and param2=value2 Example three - do an include to myJsp.jsp page with parameters param1=value1 and param2=value2 |