Forum Moderators: open
USERID: 001 ¦ PRODUCTID: 10 ¦ QUANTITY: 2
When the user checks out, the records with that checksum ID are then deleted after the transaction takes place.
I would rather handle the above function with client-side cookies. Now, it's easy to do this:
Response.Cookies("Product_10")("Quantity") = 2
...but I want to avoid looping through all of the product ID #'s just to find the ones that have a "quantity" value.
Any suggestions?