Hello All,
What I have understood by reading online is that
JSP fragments are incomplete JSP pages saved with .jspf extn.
I tried to include one just .jspf file using:
<jsp:include page="/jspf/header.jspf" />
and, inside this JSP fragment I'm trying to read from the implicit request attr.
<html><head><title>Thanks for visiting <%= request.getParameter("fName") %> <%= request.getParameter("lName") %> </title></head><body>
But, this doesn't work, however if I change the extension from.jspf to .jsp it works...pls help...