Java 2 Platform, Enterprise Edition: Platform and Component Specifications
JSP.7.2.1 The jsp:root Element
An XML document representing a JSP page has jsp:root as its root element type. The root is also the place where taglibs will insert their namespace attributes. The top element has an xmlns attribute that enables the use of the standard elements defined in the JSP 1.1 specification. <jsp:root xmlns:jsp="http://java.sun.com/products/jsp/dtd/jsp_1_0.dtd"> remainder of transformed JSP page </jsp:root> JSP.7.2.2 Public ID
The proposed document type declaration is: <! DOCTYPE root PUBLIC "-//Sun Microsystems Inc.//DTD JavaServer Pages Version 1.1//EN" "http://java.sun.com/products/jsp/dtd/jspcore_1_0.dtd"> |