This is my part of the jsp file. I am trying to set a parameter value for SalesClientDetails.jsp.i, not using this <%%> style. How to pass the parameter that I used using jsp: expression, but without success.
<jsp:scriptlet> if (request.getParameter("clientid") != null) { String clientid = request.getParameter("clientid"); </jsp:scriptlet> <jsp:include page="SalesClientDetails.jsp"> <jsp:param name="clientid" value= /> </jsp:include> <jsp:scriptlet> } </jsp:scriptlet>
source share