% ProductCat=request("ProductCat") Set PR=server.createobject("ADODB.recordset") SQL="SELECT * FROM Products WHERE ProductID="&Request("ProductID") PR.open SQL, conn, adOpenStatic, adLockreadonly if len(trim(session("ProductIDString"))) > 0 then idarray=SPLIT(session("ProductIDString"),"@") prodarray=SPLIT(session("ProductString"),"@") sizearray=SPLIT(session("SizeString"),"@") pricearray=SPLIT(session("PriceString"),"@") qtyarray=SPLIT(session("QtyString"),"@") end if OrderTotal=0 if PR("status")="Private" then returnURL="LCProducts.asp" else returnURL="Products.asp" end if %>
Add The Following Item To Your Order |
||||
Product |
Product Name |
ProductSize |
Price |
Order Qty |
Items In Your Current Order All prices are shown in US$ |
|||||
Product Name |
ProductSize |
Price |
Order Qty |
Price |
|
<%=prodarray(x)%> |
<%=sizearray(x)%> |
$<%=formatnumber(pricearray(x),2)%> |
<%=qtyarray(x)%> |
$<%=formatnumber(pricearray(x)*qtyarray(x),2)%> |
|
Order Sub Total: |
$<%=formatnumber(OrderTotal,2)%> |
||||
Shipping: |
$<%=formatnumber(ROUND(OrderTotal*.1,2),2)%> |
||||
Order Total: |
$<%=formatnumber(OrderTotal+ROUND(OrderTotal*.1,2),2)%> |
||||
You currently have no items in your order |
|||||