Skip to content

Instantly share code, notes, and snippets.

@murven
Created May 27, 2015 17:33
Show Gist options
  • Save murven/a629784004ba072405f9 to your computer and use it in GitHub Desktop.
Save murven/a629784004ba072405f9 to your computer and use it in GitHub Desktop.
ASP.NET list all cookies
<% foreach (var key in Request.Cookies.AllKeys)
{
Response.Write(string.Format("Key:{0}|Value:{1}|\r\n", key, Request.Cookies[key].Value));
} %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment