jsp:include action tag
jsp:include action tag is used to include the content of another resource at the specific position into current JSP page. Another resource can be servlet, jsp or html file. Syntax: <jsp:include page=”URL of another resource”/> Note: In case of jsp:include action tag contents are included during request processing. Difference between include directive and include action. … Read more