The Cookies collection property contains the values of the cookies sent in the request.
The Cookies collection property allows you to access the values of the browser cookies sent in by requests.
There is one mandatory argument and two optional arguments.
You can iterate through a collection using a For Each ... Next loop.
<%
For Each objCK In Request.Cookies
Response.Write objCK & " = " & Request.Cookies(objCK) & "<br>"
Next
%>
PRD2 = VBScript
PRD1 = ASP
MAIN = DevSite