products.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="tags" tagdir="/WEB-INF/tags" %>
  16. <html>
  17.   <head>
  18.     <title>JSP 2.0 Examples - Display Products Tag File</title>
  19.   </head>
  20.   <body>
  21.     <h1>JSP 2.0 Examples - Display Products Tag File</h1>
  22.     <hr>
  23.     <p>This JSP page invokes a tag file that displays a listing of 
  24.     products.  The custom tag accepts two fragments that enable
  25.     customization of appearance.  One for when the product is on sale
  26.     and one for normal price.</p>
  27.     <p>The tag is invoked twice, using different styles</p>
  28.     <hr>
  29.     <h2>Products</h2>
  30.     <tags:displayProducts>
  31.       <jsp:attribute name="normalPrice">
  32. Item: ${name}<br/>
  33. Price: ${price}
  34.       </jsp:attribute>
  35.       <jsp:attribute name="onSale">
  36. Item: ${name}<br/>
  37. <font color="red"><strike>Was: ${origPrice}</strike></font><br/>
  38. <b>Now: ${salePrice}</b>
  39.       </jsp:attribute>
  40.     </tags:displayProducts>
  41.     <hr>
  42.     <h2>Products (Same tag, alternate style)</h2>
  43.     <tags:displayProducts>
  44.       <jsp:attribute name="normalPrice">
  45. <b>${name}</b> @ ${price} ea.
  46.       </jsp:attribute>
  47.       <jsp:attribute name="onSale">
  48. <b>${name}</b> @ ${salePrice} ea. (was: ${origPrice})
  49.       </jsp:attribute>
  50.     </tags:displayProducts>
  51.   </body>
  52. </html>