adspace
Differentiate between include directive and include action.
Answer Posted / Rahul Nayak
The `<%@ include %>` directive is used to include another JSP page at the time of compiling the current page, while the `<jsp:include />` action is used to include another resource during runtime. The difference lies in when the included file is processed – the directive does so at compile-time, whereas the action does so at run-time.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers