blob: 7898fe2633a7f1cd489672433e9b17dbb41834ee [file] [log] [blame]
Hongqing Liufd5ee812014-05-10 16:32:51 +08001<html><body><pre>
2&lt;!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18&lt;%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
19&lt;%@ attribute name="normalPrice" fragment="true" %>
20&lt;%@ attribute name="onSale" fragment="true" %>
21&lt;%@ variable name-given="name" %>
22&lt;%@ variable name-given="price" %>
23&lt;%@ variable name-given="origPrice" %>
24&lt;%@ variable name-given="salePrice" %>
25
26&lt;table border="1">
27 &lt;tr>
刘洪青6266f992017-05-15 21:21:03 +080028 &lt;td>
Hongqing Liufd5ee812014-05-10 16:32:51 +080029 &lt;c:set var="name" value="Hand-held Color PDA"/>
30 &lt;c:set var="price" value="$298.86"/>
31 &lt;jsp:invoke fragment="normalPrice"/>
32 &lt;/td>
刘洪青6266f992017-05-15 21:21:03 +080033 &lt;td>
Hongqing Liufd5ee812014-05-10 16:32:51 +080034 &lt;c:set var="name" value="4-Pack 150 Watt Light Bulbs"/>
35 &lt;c:set var="origPrice" value="$2.98"/>
36 &lt;c:set var="salePrice" value="$2.32"/>
37 &lt;jsp:invoke fragment="onSale"/>
38 &lt;/td>
刘洪青6266f992017-05-15 21:21:03 +080039 &lt;td>
Hongqing Liufd5ee812014-05-10 16:32:51 +080040 &lt;c:set var="name" value="Digital Cellular Phone"/>
41 &lt;c:set var="price" value="$68.74"/>
42 &lt;jsp:invoke fragment="normalPrice"/>
43 &lt;/td>
刘洪青6266f992017-05-15 21:21:03 +080044 &lt;td>
Hongqing Liufd5ee812014-05-10 16:32:51 +080045 &lt;c:set var="name" value="Baby Grand Piano"/>
46 &lt;c:set var="price" value="$10,800.00"/>
47 &lt;jsp:invoke fragment="normalPrice"/>
48 &lt;/td>
刘洪青6266f992017-05-15 21:21:03 +080049 &lt;td>
Hongqing Liufd5ee812014-05-10 16:32:51 +080050 &lt;c:set var="name" value="Luxury Car w/ Leather Seats"/>
51 &lt;c:set var="origPrice" value="$23,980.00"/>
52 &lt;c:set var="salePrice" value="$21,070.00"/>
53 &lt;jsp:invoke fragment="onSale"/>
54 &lt;/td>
55 &lt;/tr>
56&lt;/table>
57</pre></body></html>