Depending on circumstance, there are 2 different params that can be passed with my jsp:include. Is there any way that I could use a conditional of some sort to determine which param is passed?
Created May 7, 2012
Bozidar Dangubic Yes, that should be possible. For example,
<jsp:include page="page1.jsp"> <% if(something) { %> <jsp:param name="param1" value="1"/> <% } else { %> <jsp:param name="param2" value="2"/> <% } %> </jsp:include>