repeat.jsp
上传用户: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. <%@ taglib prefix="mytag" uri="/WEB-INF/jsp2/jsp2-example-taglib.tld" %>
  16. <html>
  17.   <head>
  18.     <title>JSP 2.0 Examples - Repeat SimpleTag Handler</title>
  19.   </head>
  20.   <body>
  21.     <h1>JSP 2.0 Examples - Repeat SimpleTag Handler</h1>
  22.     <hr>
  23.     <p>This tag handler accepts a "num" parameter and repeats the body of the
  24.     tag "num" times.  It's a simple example, but the implementation of 
  25.     such a tag in JSP 2.0 is substantially simpler than the equivalent 
  26.     JSP 1.2-style classic tag handler.</p>
  27.     <p>The body of the tag is encapsulated in a "JSP Fragment" and passed
  28.     to the tag handler, which then executes it five times, inside a 
  29.     for loop.  The tag handler passes in the current invocation in a
  30.     scoped variable called count, which can be accessed using the EL.</p>
  31.     <br>
  32.     <b><u>Result:</u></b><br>
  33.     <mytag:repeat num="5">
  34.       Invocation ${count} of 5<br>
  35.     </mytag:repeat>
  36.   </body>
  37. </html>