JSP Include Directive by R4R Team

Jsp Include Directive:

The include directive is used to include the contents of any resource it may be jsp file, html file or text file. The include directive includes the original content of the included resource at page translation time (the jsp page is translated only once so it will be better to include static resource).

Advantage of Include directive

.Code Reusability

Syntax of include directive

<%@ include file="resourceName" %>

Example: include directive

In this example, we are including the content of the header.html file. To run this example you must create an header.html file.

<html>

<body>

<%@ include file="header.html" %>

Today is: <%= java.util.Calendar.getInstance().getTime() %>

</body>

</html>

Note: The include directive includes the original content, so the actual page size grows at runtime.

Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!