Cookie 替代 ASP

发布于 2024-11-04 20:08:31 字数 54 浏览 0 评论 0原文

如果在 ASP classic 中禁用 Cookie,我可以使用什么?

谢谢。

What can i use if Cookies are disabled in ASP classic?

Thank you.

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

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

发布评论

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

评论(1

小鸟爱天空丶 2024-11-11 20:08:31

通常最好的选择是友好的通知告诉他们允许 cookie 的许可,否则您将花费​​大量时间维护一个难以使用的系统来迎合少数访问者。

由于 HTTP 本质上是无状态的,因此如果客户端明确阻止页面请求,则很难在页面请求之间维持状态。

可以克服它的一种方法是,将查询字符串参数传递给标识用户的每个内部链接,但它也有其自身的问题,我强烈建议您不要尝试。这将非常难以维护,并且会带来许多安全问题。

A friendly notification to tell them to allow permission for cookies is the best option usually, otherwise you will be spending a lot of time maintaining a difficult to use system to cater for a minority of visitors.

Because HTTP is stateless by nature, it's hard to maintain a state between page requests if the client explicitly blocks them.

One way it can be overcome, but comes with it's own problems and I highly suggest you don't try it, is pass a query string parameter to every internal link identifying the user. This would be incredibly hard to maintain and comes with a host of security concerns.

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