InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Directive Include And Jsp Include? |
|
Answer» <%@ include>: Used to include STATIC RESOURCES during translation TIME. JSP include: Used to include DYNAMIC content or static content during runtime. <%@ include>: Used to include static resources during translation time. JSP include: Used to include dynamic content or static content during runtime. |
|