开发者

Session cookie issue in IE8 for Classic ASP code running on IIS 7.5 (Windows 7)

开发者 https://www.devze.com 2022-12-29 21:20 出处:网络
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

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!


Sounds like an app pool problem.
See this stackflow post IIS7 and Classic ASP Sessions

0

精彩评论

暂无评论...
验证码 换一张
取 消