I want to know when we should use:
<%@ include file > and when we use <jsp:include>
What are the differences between them?
Printable View
I want to know when we should use:
<%@ include file > and when we use <jsp:include>
What are the differences between them?
first one: the plain, static, text of a file is included and then the jsp text is processed.
The second one includes the dynamic output from a URL, so there's a big difference between the two.