<jsp:include page="..">: It is like a function call from one jsp to another jsp. The inclusion of one jsp content to another happens at execution time. This approach is handy for web application modularization.If included file changes then the new contents will be included in the output.
Tuesday, April 17, 2007
What is the difference between ' include file = ' and 'jsp:include page = ...'
<jsp:include page="..">: It is like a function call from one jsp to another jsp. The inclusion of one jsp content to another happens at execution time. This approach is handy for web application modularization.If included file changes then the new contents will be included in the output.
Subscribe to:
Post Comments (Atom)


1 comments:
I would like to add more diffrence between @include and <jsp:include since the <jsp:include is executed at runtime it is faster compared to @include
Post a Comment