Forum Moderators: open
At the moment the cookie looks like
uid1=1&uid2=1
I was thinking the =1 should reflect the quantity so every time a item was added with that uid it increments by 1. Also there should be a way to subtract it by 1 upon someone clicking the subtract link.
The code that currently sets the cookie is
uid = request.querystring("id")
cookieUid = "uid" & uid
Response.Cookies("short")(cookieUid) = "1"
response.redirect "shop.asp"
Anyone got an idea of how to achieve this?
Many thanks