Hi,
I am having trouble debugging this code.Please be kind enough to have a look.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Bogus Order Calculate</title>
</head>
<body>
<H1>Bogus Order Calculate</H1>
You ordered these items:
<form action="FinalizeOrder.jsp" METHOD="POST">
<%
if("Dictionary".equalsIgnoreCase(request.getParameter("book")))
{
%><input type="hidden" name="book" value="10.00">
a Book<BR><%
}
if("Coffeecake".equalsIgnoreCase(request.getParameter("food")))
{
%><input type="hidden" name="food" value="2.00">
some Food<BR><%
}
if("Coffee".equalsIgnoreCase(request.getParameter("drink")))
{
%><input type="hidden" name="drink" value="1.00">
a Drink<BR><%
}
%>
<BR><BR>
<input type="submit" value="Finalize Order">
</form>
</body>
</html>