HTTP Compression - Urgent

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • JDCaruso

    HTTP Compression - Urgent

    i have activate the HTTP compression for static and
    dynamic files, the problem is that iis or web browser is
    caching the response of the asp page... and allways
    display the same. Example:
    <%
    Response.Write "Time: " & Time()
    %>
    allways display the same time, i need to do a manually
    Refresh (and that is not what i want...).
    how can i fix the problem

    Thanxs

  • Jeff Cochran

    #2
    Re: HTTP Compression - Urgent

    On Tue, 22 Jun 2004 06:53:20 -0700, "JDCaruso"
    <anonymous@disc ussions.microso ft.com> wrote:
    [color=blue]
    >i have activate the HTTP compression for static and
    >dynamic files, the problem is that iis or web browser is
    >caching the response of the asp page... and allways
    >display the same. Example:
    ><%
    >Response.Wri te "Time: " & Time()
    >%>
    >allways display the same time, i need to do a manually
    >Refresh (and that is not what i want...).[/color]

    Set timeouts, refresh interval, use the PRAGMA NO-CACHE directive.
    Lots of possibilities depending on what you need to accomplish and
    what you have access to configure.

    Jeff

    Comment

    Working...