Page directive attributes: autoFlush, buffer, contentType, errorPage, extends, import, info, language, pageEncoding, session : Page Directive Attributes « JSP « Java Tutorial






<%@ page autoFlush="true"
         buffer="16kb"
         contentType="text/html"
         errorPage="myErrorPage.jsp"
         extends="org.apache.jasper.runtime.HttpJspBase"
         import="java.sql.*"
         info="This page has a set of page directive attributes"
         language="java"
         pageEncoding="UTF-8"
         session="false"
%>

<HTML>
  <HEAD><TITLE>Page directive attributes</TITLE></HEAD>

  <BODY>
    The JSP page used to generate this content defined values for all of the page directive's attributes.
  </BODY>
</HTML>








23.31.Page Directive Attributes
23.31.1.Page directive attributes: autoFlush, buffer, contentType, errorPage, extends, import, info, language, pageEncoding, session