include方法应用的例子

---摘自互联网

welcome.jsp
<%@  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>

titlebar.jsp
<table>
<tr>
<td>
<img  src="sams.gif">
</td>
<td>
<%

out.println("<b>Hello:  "  +  request.getParameter("user")  +  "</b>");
%>
</td>
</tr>
</table>