This is template text; it is automatically written to the output
    stream.
    
    
<%-- This is a JSP comment --%> For more information, see e1057 Commenting a JSP Page
<% // This is a scriptlet; it contains Java code // For more information, see e1047 Running Java Code in a JSP Page %>
The following is a JSP expression; it is used to emit dynamic text to the output stream: The current date is <%= new java.util.Date() %> For more information, see e1058 Generating Dynamic Content on a JSP Page
The following is a directive that includes other files: <%@ include file="JavaCode.jsp" %> For more information, see e1054 Including a File in a JSP Page