Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
17 lines (15 loc) · 478 Bytes

tag.part.md

File metadata and controls

17 lines (15 loc) · 478 Bytes

Part Tag

It will be more easy using Part tag to include a common page part made by JSP in your own JSP.
<%@ 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")%>