shuffle.jsp
上传用户:bj_pst
上传日期:2019-07-07
资源大小:7353k
文件大小:3k
源码类别:

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="my" uri="http://jakarta.apache.org/tomcat/jsp2-example-taglib"%>
  16. <html>
  17.   <head>
  18.     <title>JSP 2.0 Examples - Shuffle Example</title>
  19.   </head>
  20.   <body>
  21.     <h1>JSP 2.0 Examples - Shuffle Example</h1>
  22.     <hr>
  23.     <p>Try reloading the page a few times.  Both the rows and the columns
  24.     are shuffled and appear different each time.</p>
  25.     <p>Here's how the code works.  The SimpleTag handler called 
  26.     &lt;my:shuffle&gt; accepts three attributes.  Each attribute is a 
  27.     JSP Fragment, meaning it is a fragment of JSP code that can be
  28.     dynamically executed by the shuffle tag handler on demand.  The 
  29.     shuffle tag handler executes the three fragments in a random order.
  30.     To shuffle both the rows and the columns, the shuffle tag is used
  31.     with itself as a parameter.</p>
  32.     <hr>
  33.     <blockquote>
  34.      <font color="#ffffff">
  35.       <table>
  36.         <my:shuffle>
  37.           <jsp:attribute name="fragment1">
  38.             <tr>
  39.               <my:shuffle>
  40.                 <jsp:attribute name="fragment1">
  41.                   <my:tile color="#ff0000" label="A"/>
  42.                 </jsp:attribute>
  43.                 <jsp:attribute name="fragment2">
  44.                   <my:tile color="#00ff00" label="B"/>
  45.                 </jsp:attribute>
  46.                 <jsp:attribute name="fragment3">
  47.                   <my:tile color="#0000ff" label="C"/>
  48.                 </jsp:attribute>
  49.               </my:shuffle>
  50.             </tr>
  51.           </jsp:attribute>
  52.           <jsp:attribute name="fragment2">
  53.             <tr>
  54.               <my:shuffle>
  55.                 <jsp:attribute name="fragment1">
  56.                   <my:tile color="#ff0000" label="1"/>
  57.                 </jsp:attribute>
  58.                 <jsp:attribute name="fragment2">
  59.                   <my:tile color="#00ff00" label="2"/>
  60.                 </jsp:attribute>
  61.                 <jsp:attribute name="fragment3">
  62.                   <my:tile color="#0000ff" label="3"/>
  63.                 </jsp:attribute>
  64.               </my:shuffle>
  65.             </tr>
  66.           </jsp:attribute>
  67.           <jsp:attribute name="fragment3">
  68.             <tr>
  69.               <my:shuffle>
  70.                 <jsp:attribute name="fragment1">
  71.                   <my:tile color="#ff0000" label="!"/>
  72.                 </jsp:attribute>
  73.                 <jsp:attribute name="fragment2">
  74.                   <my:tile color="#00ff00" label="@"/>
  75.                 </jsp:attribute>
  76.                 <jsp:attribute name="fragment3">
  77.                   <my:tile color="#0000ff" label="#"/>
  78.                 </jsp:attribute>
  79.               </my:shuffle>
  80.             </tr>
  81.           </jsp:attribute>
  82.         </my:shuffle>
  83.       </table>
  84.      </font>
  85.     </blockquote>
  86.   </body>
  87. </html>