HF
Servlets &
JSP 1st edition Pg 491 says
c:imports and jsp:includes can be messy cause one has to pass parameters to them and since parameters usually represents form data submitted by the user, its not a clean approach to include reusable JSPs via c:import and JSP:include and hence tag files came into picture and must be used.
My question is to when one uses jsp:forward to forward requests to JSP one has to again use jsp

aram to pass custom information to the JSP/servlet that is getting the request. So is this correct and if not is there any alternative for this like the tag files.