Using SubCookies [ASP Programming] <!-- ======================================================= File Name : UsingSubCookies.asp WebSite : http://programming-asp.blogspot.in/ Facebook : https://www.facebook.com/aspprogramming Twitter : https://twitter.com/ASPProgramming Created By : Bintu Chaudhary ======================================================= --> <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Using Keys (SubCookies)</title> </head> <body> <% Response.Cookies("Information")("Name")="Bintu" Response.Cookies("Information")("LastName")="Chaudhary" %> <% Dim c, y For Each c in Request.Cookies if Request.Cookies(c).HasKeys then for each y in Request.Cookies(c) Response.write (c & ":" & y & " = " & Request.Cookies(c)(y)) Response.Write("<BR") next End if Next %> </body> </html> Read more » Share on Facebook Share on Twitter Share on Google Plus RELATED POSTS Contains all the HTTP Headers & Env...Getting Started with ASP | Active S...How to Use Properly ASP on Window 7...