Evaluates a statement and writes result to output,
<%= ... %>
Contains some java code,
<% ... %>
Server comments not sent to client,
<%-- ... --%>
Defines Java code that is contained outside of the service method of the servlet,
<%! ... %>
<%!
private String formatDate(Date d)
{
//TO DO format date function
}
%>
Directives to Servlet engine on how to compile page
<%@ directive attribute1="value1", ... %>
<%@ page import="java.util.*, java.io.*" %> <%@ include file="/home.jsp" %> <%@ page errorPage="/error.jsp" %> <%@ page isErrorPage="true" %>