basic.jspx
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <!--
  2.   Licensed to the Apache Software Foundation (ASF) under one or more
  3.   contributor license agreements.  See the NOTICE file distributed with
  4.   this work for additional information regarding copyright ownership.
  5.   The ASF licenses this file to You under the Apache License, Version 2.0
  6.   (the "License"); you may not use this file except in compliance with
  7.   the License.  You may obtain a copy of the License at
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.   Unless required by applicable law or agreed to in writing, software
  10.   distributed under the License is distributed on an "AS IS" BASIS,
  11.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.   See the License for the specific language governing permissions and
  13.   limitations under the License.
  14. -->
  15. <tags:xhtmlbasic xmlns:tags="urn:jsptagdir:/WEB-INF/tags"
  16.                  xmlns:jsp="http://java.sun.com/JSP/Page"
  17.                  xmlns:fmt="http://java.sun.com/jsp/jstl/fmt"
  18.  xmlns="http://www.w3.org/1999/xhtml">
  19.   <jsp:directive.page contentType="text/html" />
  20.   <head>
  21.     <title>JSPX - XHTML Basic Example</title>
  22.   </head>
  23.   <body>
  24.     <h1>JSPX - XHTML Basic Example</h1>
  25.     <hr/>
  26.     This example illustrates how to use JSPX to produce an XHTML basic
  27.     document suitable for use with mobile phones, televisions, 
  28.     PDAs, vending machines, pagers, car navigation systems,
  29.     mobile game machines, digital book readers, smart watches, etc.
  30.     <p/>
  31.     JSPX lets you create dynamic documents in a pure XML syntax compatible
  32.     with existing XML tools.  The XML syntax in JSP 1.2 was awkward and
  33.     required &amp;lt;jsp:root&amp;gt; to be the root element of the document.
  34.     This is no longer the case in JSP 2.0.
  35.     <p/>
  36.     This particular example uses a tag file to produce the DOCTYPE and
  37.     namespace declarations to make the output of this page a valid XHTML
  38.     Basic document.
  39.     <p/>
  40.     Just to prove this is live, here's some dynamic content:
  41.     <jsp:useBean id="now" class="java.util.Date" />
  42.     <fmt:formatDate value="${now}" pattern="MMMM d, yyyy, H:mm:ss"/>
  43.   </body>
  44. </tags:xhtmlbasic>