Where cookies are stored in system?

Viewed 54855

If i use Response.Cookies["test"].Value ="Hi"; where are cookie stored in system?

Can i check Cookies["test"] value in my pc because cookies are stored in text format.

I am using VS 2008. Operating system is Windows 7.

I have tried to find in Google but not getting the exact answer. Please help to sort out this problem.

6 Answers

For Windows :

C:\Users\Your User Name\AppData\Local\Google\Chrome\User Data\Default.

For Mac:

~Library/Application\ Support/Google/Chrome/Default/Cookies

You can use SQLite Browser for access it .

Related