Электронный магазин на Java и XML

         

Код HTML, который...



Листинг 5.18. Код HTML, который формируется в JSP-странице Shippinglnfo (Shippinglnfo.jsp)

<html>
<head>
<title>
Shipping Info</title>
</head>
<body>
<form action="CreditInfo.jsp">
Select a Shipper and Class:<br />
<table>
<% ShippingCalculator calc = new ShippingCalculator( order );
String[] types = calc.getTypes();
for( int i = 0; i < types.length; i++ ) { %>
<tr>
<td>
<input type="radio" name="shipperAndClass" value="<%=types[i] %>
" />
<%=types[i] %>
</td>
<td>
<%=calc.getPrice(types[i]) %>
</td>
</tr>
<% } %>
</table>
<input type="submit" value="Submit information">
</form>
</body>
</html>



Содержание раздела