I want to inlcude a html-file using either
<jsp:include page="/html/header.html" flush="true"/>
or
<%@ include file="html/header.html" %>
2 questions:
1.
why does this not work?
--
<%= "TEST"%>
<jsp:include page="/html/header.html" flush="true"/>
--
I get Error 500 ..
but this works:
<%= "TEST"%>
<%@ include file="html/header.html" %>
2.
how to implement something like this:
<%! Properties p = (new Property()).readP(); %>
<jsp:include page=p.getProperty("HTMLPath") + "/header.html" flush="true"/>
thanks
michi