Filename-Header.jsp
<html>
<body>
<%= new java.util.Date() %>
</body>
</html>
Filename-Footer.jsp
<html>
<body>
<%! int accesstime; %>
<h2> You are visited <%= ++accesstime
%> this time. </h2>
</body>
</html>
Filename-directive.jsp
<html>
<body>
<h1>Header</h1>
<jsp:include
page="header.jsp" />
<hr>
<h1>This is example of head and
footer and defination-20.</h1>
<hr>
<h1>Footer</h1>
<jsp:include
page="footer.jsp" />
</body>
</html>
Output
Header
Tue Apr 10 21:55:37 IST 2012
No comments:
Post a Comment