Reputation: 303
I need to include jsp pages to a jsp page.
I had
page="<%=contextPath%>/admin/admin_left.jsp"
and i want to include than in a jsp page. Please, help me.
Upvotes: 2
Views: 3124
Reputation: 2081
It sounds like you want to use
<jsp:include page="/admin/admin_left.jsp" />
Upvotes: 4