Structure Query Language, C programming, Java, Servlet, Jsp, Unix

Thursday 12 April 2012

Write a JSP page, which uses the include directive to show its header and footer.


[index.jsp]
<html>
<body>
<%@ include file="/pro20header.jsp" %>
<tr>
<td align="center" valign="center"><h1><i>Pankaj & Vijay <br> Welcomes You...</i></h1>
<%@ include file="/pro20footer.jsp" %>
</body>
</html>

[pro20header.jsp]



<table align=center height=100% >
<tr>
<td colspan=2  align=center valign="top"> <img src="logo.jpg"/>


[pro20footer.jsp]


<tr>
<td align=center valign="bottom"> @copyright <a href="http://www.master-gtu.blogspot.com">www.master-gtu.blogspot.com</a>
</table>



No comments:

Post a Comment