InterviewSolution
Saved Bookmarks
| 1. |
What is a include directive? |
|
Answer» The include directive is used to includes a file during the translation phase. This directive tells the container to merge the content of other external files with the current JSP during the translation phase. You may code include directives anywhere in your JSP page. The general usage form of this directive is as follows − <% include file = "relative url" > |
|