0

Is it possible that I hit a page and in response I get the information that this page is using cookies.

Mohsin
  • 21
  • 1
  • 4

2 Answers2

0

You don't specify which tools you are using, but the cookies are set using HTTP headers, so look in the headers and you will see all the cookie information.

Using curl, --dump-headers may be interesting.

Jonatan
  • 2,734
  • 2
  • 22
  • 33
0

I am assuming c# from your "httpcookie" tag.

Use HttpWebRequest and make sure to assign its CookieContainer property before making the request. When the request completes, check the response.Cookies.

Clay Fowler
  • 2,059
  • 13
  • 15