1 HttpCookieCollection hc = new HttpCookieCollection(); 2 hc = Request.Cookies; 3 lOutput.Text = ""; 4 foreach (String sc in hc) 5 { 6 HttpCookie c = hc[sc]; 7 lOutput.Text += c.Value.ToString(); 8 }