<%@ taglib prefix="efw" uri="efw" %> <body> ... <efw:Part path="part.jsp" param1="####" param2="####" /> //or efw:part , efw:PART ... </body>
You can get the params in the part jsp by request.getAttribute like the next.
<%=request.getAttribute("param1")%> <%=request.getAttribute("param2")%>