posted 20 years ago
Hello,
I had the same problem in my project this morning.
It's linked to the cache usage of IE, different in Netscape/Mozilla.
I think you applied http headers to remove usage of cache in your file geenrated, like this :
response.setHeader("Pragma", "No-cache, post-check=0, pre-check=0");
response.setHeader("Cache-Control", "no-cache");
response.setDateHeader("Expires", 1);
You can't do this. IE doesn't manage it correctly.