gpt4 book ai didi

asp.net - cookie 存储在系统中的什么位置?

转载 作者:行者123 更新时间:2023-12-03 09:11:56 28 4
gpt4 key购买 nike

如果我使用 Response.Cookies["test"].Value ="Hi"; cookie 存储在系统中的什么位置?

可以查吗Cookies["test"]值在我的电脑中,因为 cookie 以文本格式存储。

我使用的是 VS 2008。操作系统是 Windows 7。

我试图在谷歌中找到但没有得到确切的答案。请帮忙解决这个问题。

最佳答案

IE 和 Windows 在此处保留 cookie:

%AppData%\Microsoft\Windows\Cookies

指向与@Sohnee's 在 Windows Visa 和更新版本下相同的目录,但他在 Windows XP 和更早版本下没有,我的 - 是。

还有 Temporary Internet Files可以包含一些cookie。

同时 Firefox 将 cookie 保存到配置文件根目录下的 SQLite 数据库中:
%AppData%\Mozilla\Firefox\Profiles\%FirefoxProfile%\cookies.sqlite

要读取数据,您需要使用任何 SQLite 客户端连接到该数据库并执行下一个查询:
select value
from moz_cookies
where name = 'test'

我刚刚使用试用版做了它 SQLite Maestro .并且不要忘记在尝试连接之前关闭所有正在运行的 Firefox。

关于asp.net - cookie 存储在系统中的什么位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3801675/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com