<%--
/**
* A header, included in top of every jsp page.
* Gets and prints "exampleNumber" parameter from request.
*
* @author Sofoklis Stouraitis
*/
--%>
<%-- Set content type --%>
<%@ page contentType="text/html; charset=Windows-1253" %>
<%-- Define error page.
Redirect to "applicationErrorPage.jsp" if encounter an error --%>
<%@ page errorPage="applicationErrorPage.jsp" %>
<table width="80%" border="0" align="center">
<tr>
<td width="9%" align="center">
<img src="images/DET_Logo_70.jpg" >
</td>
<td width="91%" bgcolor="#FFFFCA" align="center">
<font size="6" face="Verdana, Arial, Helvetica, sans-serif">Εργαστηριακά παραδείγματα σε <strong>JSP</strong></font>
</td>
</tr>
</table>
<p align="center">
<font color="#000033" size="4" face="Verdana, Arial, Helvetica, sans-serif">
<%-- Gets & Prints the parameter "exampleNumber" from the request--%>
<%= request.getParameter("exampleNumber") %>
</font>
</p>
|