Page Lifecycle ASP.Net Tutorial

<%@ Page Language="vb" Explicit="False" Strict="False" %>

   
      Getting cookie values in ASP
   

<%
For Each strKey In Request.Cookies
   Response.Write (strKey & " = " & Request.Cookies(strKey).Value & "
")
   If Request.Cookies(strKey).HasKeys Then
      For Each strSubKey In Request.Cookies(strKey).Values
         Response.Write ("->" & strKey & "(" & strSubKey & ") = " & _
            Request.Cookies(strKey)(strSubKey).ToString() & "
")
      Next
   End If
Next
%>