I hope this is a simple answer for someone, but I'm having the following error
with a peice of code that follows that. I did try the <jsp:params> directive but it complained
about not having a name and value attribute as well.
org.apache.jasper.compiler.ParseException: /thdir/htdocs/viewEvent.jsp(185,0)
Expected "param" tag with "name" and "value" attributes after the "params" tag.
<jsp:include page="<%=thisLink.getValue()%>" flush="true">
<%
Enumeration en = request.getParameterNames();
while(en.hasMoreElements()) {
String thisParm = (String)en.nextElement();
%>
<jsp:param name="<%=thisParm%>" value="<%=request.getParameter(thisParm)%>"/>
<%
}
%>
</jsp:include>
Thanks
-Simon