Define Jsp-include and Jsp-forward »



As part of Jsp Specification JavaSoft has specified the following variables.
Syntax:
Include   <jsp:include page =”<filename>” />
This inclusion of file is dynamic and the specified file is included in the JSP file at run-time i.e. out put of the included file is inserted into the JSP file.
Forward   <jsp:forward page=”<filename>” />
This will redirect to the different [...]