rakela
rakela

Reputation: 303

struts, include jsp page

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

Answers (1)

Tia
Tia

Reputation: 2081

It sounds like you want to use

<jsp:include page="/admin/admin_left.jsp" />

Upvotes: 4

Related Questions