displayProducts.tag
上传用户: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="c" uri="http://java.sun.com/jsp/jstl/core" %>
  16. <%@ attribute name="normalPrice" fragment="true" %>
  17. <%@ attribute name="onSale" fragment="true" %>
  18. <%@ variable name-given="name" %>
  19. <%@ variable name-given="price" %>
  20. <%@ variable name-given="origPrice" %>
  21. <%@ variable name-given="salePrice" %>
  22. <table border="1">
  23.   <tr>
  24.     <td> 
  25.       <c:set var="name" value="Hand-held Color PDA"/>
  26.       <c:set var="price" value="$298.86"/>
  27.       <jsp:invoke fragment="normalPrice"/>
  28.     </td>
  29.     <td> 
  30.       <c:set var="name" value="4-Pack 150 Watt Light Bulbs"/>
  31.       <c:set var="origPrice" value="$2.98"/>
  32.       <c:set var="salePrice" value="$2.32"/>
  33.       <jsp:invoke fragment="onSale"/>
  34.     </td>
  35.     <td> 
  36.       <c:set var="name" value="Digital Cellular Phone"/>
  37.       <c:set var="price" value="$68.74"/>
  38.       <jsp:invoke fragment="normalPrice"/>
  39.     </td>
  40.     <td> 
  41.       <c:set var="name" value="Baby Grand Piano"/>
  42.       <c:set var="price" value="$10,800.00"/>
  43.       <jsp:invoke fragment="normalPrice"/>
  44.     </td>
  45.     <td> 
  46.       <c:set var="name" value="Luxury Car w/ Leather Seats"/>
  47.       <c:set var="origPrice" value="$23,980.00"/>
  48.       <c:set var="salePrice" value="$21,070.00"/>
  49.       <jsp:invoke fragment="onSale"/>
  50.     </td>
  51.   </tr>
  52. </table>