Get all cookies and output to Label
Description: Outputs cookies to label, but that can be changed to whatever you need.
Link: http://www.codekeep.net/snippets/ba6b9cba-3750-43a8-87e1-b40982fbaeec.aspx
HttpCookieCollection hc = new HttpCookieCollection();
hc = Request.Cookies;
lOutput.Text = "";
foreach (String sc in hc)
{
HttpCookie c = hc[sc];
lOutput.Text += c.Value.ToString();
}





