检查第一个请求中 httpModule 中启用或禁用的 cookie

发布于 2025-01-07 08:58:15 字数 233 浏览 0 评论 0原文

是否有任何方法可以查找 httpModule 中启用或禁用的浏览器 cookie。

我们使用 HttpContext.Current.Request.Headers[“Cookie”] 来检查 cookie 是否启用或禁用。

但在初始请求中,无论启用还是禁用 cookie,这两种情况都始终显示空值。

我正在寻找一种方法来检查第一个请求中启用或禁用的浏览器 cookie

Is there any method to find browser cookie enabled or disabled in an httpModule.

We are using HttpContext.Current.Request.Headers[“Cookie”] to check whether cookie enabled or disabled.

But in the initial request it is always showing null value in both cases ie if either cookie enabled or disabled.

I am looking for a method to check browser cookie enabled or disabled in the first request

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜唯美灬不弃 2025-01-14 08:58:15

您检查的不是 cookie 是否启用或禁用,而是检查是否设置了某些 cookie。

检查 cookie 是否已启用的唯一方法是尝试设置一些 cookie,并在客户端发出第二个请求时检查他们是否在请求中向您发送了这些 cookie。

无法在客户端发出第一个请求时检查浏览器中是否启用了 cookie。无论如何,大多数 cookie 不起作用的情况是当浏览器配置为默默地忽略您的 cookie 时,当然,您无法在不尝试设置一些 cookie 的情况下检测到它是否忽略您的 cookie。

You're checking not for cookies being enabled or disabled but for whether there are some cookies set.

The only way to check if the cookies are enabled is to try to set some cookies, and on the second request from the client to check if they send you these cookies in their request.

This is impossible to check whether the cookies are enabled in the browser on the first request from the client. Anyway, most cases when the cookies won't work is when the browser configured to silently ignore your cookies, and of course you cannot detect whether it is ignoring your cookies or not without trying to set some cookies.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文