<%
set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open ConString
if cstr(Session("orderID")) = "" then
Response.Write ""
Response.Write " "
Response.Write "There is no current order." & " "
Response.Write "If you had previously added items to your order, "
Response.Write "your session may have timed out.
"
Response.Write "Continue shop/Italianping"
Response.Write " "
Response.Write " "
else
intOrderID = cstr(Session("orderID"))
sqlText = "select products.productID, productName, " _
& "productPrice, quantity from products, " _
& "itemsOrdered where " _
& "products.productID = itemsOrdered.productID "_
& "and itemsOrdered.orderID = " & intOrderID
%>
Review Your Order
Please review your order to be certain it is correct.
To remove an item, set the quantity to zero and press Update Order button.
<%
end if
Conn.Close
set Conn = Nothing
%>
|