Caching Problems with Compressed Pages in a Frameset (327716)



The information in this article applies to:

  • Microsoft Internet Explorer (Programming) 6 (SP1)
  • Microsoft Internet Explorer (Programming) 6.0

This article was previously published under Q327716

SYMPTOMS

You may intermittently receive a "Page not found" error message when you visit a Web site that contains a frameset. This error message may occur if:
  • The frames are generated dynamically.
  • The frames' addresses are the same (except for the query string portion).
  • HTTP compression is turned on.

CAUSE

When Internet Explorer caches the pages, it does not use the query string to derive the file name. When the second page's cache file is created, Internet Explorer overwrite the first page's cache file.

RESOLUTION

Internet Explorer 6

A supported fix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Apply it only to computers that are experiencing this specific problem. This fix may receive additional testing. Therefore, if you are not severely affected by this problem, Microsoft recommends that you wait for the next Internet Explorer 6 service pack that contains this fix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:NOTE: In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The typical support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.
   Date         Time   Version        Size     File name
   ------------------------------------------------------
   16-Aug-2002  10:58  6.0.2720.1600  481,280  Urlmon.dll
				

Internet Explorer 6 Service Pack 1

A supported fix is now available from Microsoft, but it is only intended to correct the problem that is described in this article. Apply it only to computers that are experiencing this specific problem. This fix may receive additional testing. Therefore, if you are not severely affected by this problem, Microsoft recommends that you wait for the next Internet Explorer 6 service pack that contains this fix.

To resolve this problem immediately, contact Microsoft Product Support Services to obtain the fix. For a complete list of Microsoft Product Support Services phone numbers and information about support costs, visit the following Microsoft Web site:NOTE: In special cases, charges that are ordinarily incurred for support calls may be canceled if a Microsoft Support Professional determines that a specific update will resolve your problem. The typical support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

The English version of this fix has the file attributes (or later) that are listed in the following table. The dates and times for these files are listed in coordinated universal time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time tool in Control Panel.
   Date         Time   Version        Size     File name
   ------------------------------------------------------
   24-Sep-2002  04:08  6.0.2800.1122  483,328  Urlmon.dll
				

Internet Explorer 6 Service Pack 1

Install the Cumulative Security Update for Internet Explorer. To do so, visit the following Microsoft TechNet Web site:

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

MORE INFORMATION

Steps to Reproduce the Problem

  1. Create the following two HTML files and put them in a folder on a Web server: Test.asp:
    <%@ LANGUAGE="VBSCRIPT" %>
    <html>
    <head>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8" />
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
    <META HTTP-EQUIV="Expires" CONTENT="-1" />
    </head>
    
    <frameset rows="50%,50%" border="1">
    <frame frameborder="1" src="test1.asp?Load=GetHTML1" />
    <frame frameborder="1" src="test1.asp?Load=GetHTML2" />
    </frameset>
    
    </html>
    					
    Test1.asp:
    <%@ LANGUAGE="VBSCRIPT" %>
    <html>
    <head>
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=utf-8" />
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
    <META HTTP-EQUIV="Expires" CONTENT="-1" />
    </head>
    <body>
    <%
    Select Case UCase(Request.QueryString("Load"))
    Case "GETHTML1"
    	Response.Write "PAGE 1"
    Case "GETHTML2"
    	Response.Write "PAGE 2"
    End Select
    %>
    </body>
    </html>
    					
  2. Turn on HTTP compression on the server for both dynamic and static files.
  3. From a different computer, open the Test.asp page. The problem should occur. If it does not, try refreshing the page several times.
Note the META tags. You do not have to use them to to see the problem, but having them makes it easier to see the problem.

Modification Type:MinorLast Reviewed:10/11/2005
Keywords:kbHotfixServer kbQFE kbbug kbCaching kbfix kbIE600preSP1fix kbIE600preSP2fix kbIE600sp2fix kbQFE kbIE600sp1fix KB327716 kbAudDeveloper