I came across this little problem... see, I want to store products in my cookie like so:


('Product')(intProductID)
Code:
Response.Cookies('Product')(intProductID);
where 'product' is the field in which i locate a product, and intProductID is the value that identifies that product.

I'm sure you can all see the problem with this. Every time i store a cookie in the above statement it overrides the old Product... how can i make some kind of an array or something where it stores

'Product'(id1)(id2)(id3)

or do i actually have to do named values such as

'Product1'(id1)
'Product2'(id2)

and then simply cycle through the cookies using
'Product' + i, where i is the number by which product incriments.

Thanks ladies and gents