Where cookies are stored in system?

后端 未结 6 1081
一生所求
一生所求 2020-12-08 14:15

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

Can i check Cookies[\"test\"] value in my pc because

6条回答
  •  既然无缘
    2020-12-08 14:42

    Cookies are stored in the cookies folder on Windows 7. To open the cookies folder, open run in Windows and type shell:cookies. Also, as suggested above, they might be in Temporary internet files. However, I see that your cookies are not persistent. This means you are not setting any expiration on them. Therefore, they won't be stored on your machine and they will only be part of the browser's memory.

    For details: http://sanganakauthority.blogspot.in/2014/02/aspnet-cookies-in-windows-7.html

提交回复
热议问题