Define Jsp-include and Jsp-forward
By Ramakrishna on Sep 30, 2008 in What are 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 page without notifying browser.
