I want to use jsp:include directive to include HTML content in jsp page somehow like
<jsp:include page="Relative URL" flush="true" />
Is it possible to use variable (taken from context) instead of fixed "Relative URL" so the content can be different depending on value of that variable, and how to do that?
<jsp:include page="Relative URL" flush="true" />
Is it possible to use variable (taken from context) instead of fixed "Relative URL" so the content can be different depending on value of that variable, and how to do that?