//File: index.html
<%@ page errorPage="errorpage.jsp" %>
<html>
<head>
<title>Welcome to JSP</title>
</head>
<body>
<table width="100%">
<tr>
<td>
<%@ include file="titlebar.jsp" %>
</td>
</tr>
<tr>
<td>
<%
out.println("<center><b>This is the client area.</b></center>");
%>
</td>
</tr>
</table>
</body>
</html>
//////////////////////////////////////////////////////////////
//File: titleBar.jsp
<table>
<tr>
<td>
<%
// Get the User's Name from the session
out.println("<b>Hello: " + request.getParameter("user") + "</b>");
%>
</td>
</tr>
</table>
|