在 IIS 7.5 (Windows 7) 上运行的经典 ASP 代码的 IE8 中的会话 cookie 问题
我需要在家里的 Windows 7 计算机上为我们的经典 ASP Intranet 应用程序运行一个开发服务器,并且成功地安装了它,除了会话数据似乎无法存储在 IE8 浏览器上,但在其他浏览器上运行良好。
如果我编写一个简单的脚本只是为了查看会话 ID 并查看刷新页面时会发生什么,我会在 IE 中获得递增的 ID,但在所有其他浏览器中获得固定的 ID。
<%
response.write "SessionID : " & session.sessionID & "<br />"
%>
我已将隐私设置设置为接受 IE 中的所有 cookie,但无济于事。我已经使用 CCcleaner 清除了所有 IE 设置并在 IE 中进行了重置,但这也没有帮助。
任何帮助表示赞赏!
I needed to run a development server for our Classic ASP intranet application on a Windows 7 machine at home, and managed to install it with no problems, except that session data does not seem to store on IE8 browsers, but works fine on other browsers.
If I write a simple script just to see the session ID and see what happens when I refresh the page, I get an incrementing ID in IE, but a fixed ID in all other browsers.
<%
response.write "SessionID : " & session.sessionID & "<br />"
%>
I've got privacy settings set to accept all cookies in IE, but to no avail. I've used CCcleaner to clear all IE settings and done a reset in IE, but that hasn't helped either.
Any help appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像是应用程序池问题。
请参阅此 stackflow 帖子IIS7 和经典 ASP 会话
Sounds like an app pool problem.
See this stackflow post IIS7 and Classic ASP Sessions