SCRIPT7002:XMLHttpRequest:网络错误 0x2f76,由于错误 00002f76,无法完成操作

SCRIPT7002: XMLHttpRequest: Network Error 0x2f76, Could not complete the operation due to error 00002f76

当我的应用程序的会话变量过期时,如果我们尝试通过 AJAX 调用执行任何数据库操作,我只会在 IE 上收到此错误(在 FF 和 chrome 上工作正常) .

SCRIPT7002:XMLHttpRequest:网络错误 0x2f76,由于错误 00002f76,无法完成操作

因此我的应用没有重定向。可能的原因是什么?

TIA

为此重定向状态码

303 See Other HTTP status code

IE不识别,状态码改成308完美运行

如果将不正确的 header 添加到 ajax 请求,我会从 IE 收到同样的错误。 是这样的代码:

    $.ajax({
        url: someUrl,
        type: "GET",
        cache: false,
        headers: "Cache-Control:no-cache"
    });

问题已通过更改代码解决:

    $.ajax({
        url: someUrl,
        type: "GET",
        cache: false,
        headers: {
           'Cache-Control': 'no-cache'
        }
    });