However, i am not sure how to retrieve the cookies. I know you must use "request.cookies" if i am not wrong. I tried the code below but do not think its working, in fact it gives me an error. Anyone can help me out? Thanks
Code:
Dim tempCookie As HttpCookie
For Each tempCookie In Request.Cookies
If tempCookie("addProm") Then
Response.Write(tempCookie("name"))
End If
Next
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
Line 50: Response.Cookies("saleItemIds").Expires = Now.AddDays(-1)
Line 51: Dim tempCookie As HttpCookie
Line 52: For Each tempCookie In Request.Cookies
Line 53: If tempCookie("addProm") Then
Line 54: Response.Write(tempCookie("name"))