Cookie 替代 ASP
如果在 ASP classic 中禁用 Cookie,我可以使用什么?
谢谢。
What can i use if Cookies are disabled in ASP classic?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果在 ASP classic 中禁用 Cookie,我可以使用什么?
谢谢。
What can i use if Cookies are disabled in ASP classic?
Thank you.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
通常最好的选择是友好的通知告诉他们允许 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.