<%, %> and Include FileThere are a pair of tags for enclosing your JSP Code: <% and %>. The
below is an example:
<html>
<body>
<%
out.println "This is my first JSP page.";
%>
</body>
</html>
You can include a file into your JSP page. The syntax is like that:
<jsp:include page="abc.htm" />
or:
<%@ include file="abc.htm" %>
Let's create a file called "abc.htm", enter any content inside and
save it in the same folder where first.JSP exists, then we include it into our
"first.JSP":
<html>
<body>
<%
out.println "This is my first JSP page.";
%>
<jsp:include page="abc.htm" />
</body>
</html>
Save it and refresh the browser. You will see the content of the page abc.htm
displays inside the page first.JSP.
The included file can be a .txt file or a .htm file or a .JSP file.
|