I have a project in Java thgat needs to use;
<%@include file="content.jsp" %>
to include a file into the current jsp page.
However, I now need the content.jsp to be dynamic.
How can I substitute everything in the quotes with a variable?
So;
<%@include file=myVariable %>
Instead of using static include, you can use dynamic include, then you can do something like this:-
<jsp:include page="<%= myVariable %>" flush="true" />
or
<jsp:include page="${myVariable}" flush="true" />
i have work around by using the static include after closing the tag so it still static and can be used as if you assign a string
<%
switch(questionType){
case 1:%><%@include file="qtypes/yesNo.jspf"%><%
break;
case 5:%><%@include file="qtypes/eval.jspf"%><%
break;
default :%><%@include file="qtypes/yesNo.jspf"%><%
break;
}
%>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With