Web Caching

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

    Web Caching

    Just recently we have encountered a weird problem with our
    webserver...run ning IIS 5 and W2000 SP4

    When testing an ASP page, if you get an error of some sort in your browser,
    when you go into the code and fix the problem, save the changes, when you
    refresh the page, the error stays there, even though the code is correct.
    The problem is not fixed until you rename the page, and the open it in your
    browser to work fine??

    Any suggestions, I believe this begin happening after SP4 install? is this
    just coincidence or did SP4 cause this?

    -Archi3


  • Tony Archer

    #2
    Re: Web Caching

    Its not just a 2000 problem (regardless of SP) It happens on NT 4 as well.

    The solution is to bounce the web server.

    You can create a batch to do it cleanly and quickly for you.
    Like this:
    ====
    @echo off
    net stop iisadmin /y
    net start w3svc
    net start smtpsvc
    net start msftpsvc
    net start nntpsvc
    ====

    "Archi3" <archi3@archive nture.net> wrote in message
    news:3fc4e99b@n ews.greennet.ne t...[color=blue]
    > Just recently we have encountered a weird problem with our
    > webserver...run ning IIS 5 and W2000 SP4
    >
    > When testing an ASP page, if you get an error of some sort in your[/color]
    browser,[color=blue]
    > when you go into the code and fix the problem, save the changes, when you
    > refresh the page, the error stays there, even though the code is correct.
    > The problem is not fixed until you rename the page, and the open it in[/color]
    your[color=blue]
    > browser to work fine??
    >
    > Any suggestions, I believe this begin happening after SP4 install? is this
    > just coincidence or did SP4 cause this?
    >
    > -Archi3
    >
    >[/color]


    Comment

    • Mike Florio

      #3
      Re: Web Caching

      I have seen this too. Instead of refreshing the page, close the browser and
      open it again.

      "Archi3" <archi3@archive nture.net> wrote in message
      news:3fc4e99b@n ews.greennet.ne t...[color=blue]
      > Just recently we have encountered a weird problem with our
      > webserver...run ning IIS 5 and W2000 SP4
      >
      > When testing an ASP page, if you get an error of some sort in your[/color]
      browser,[color=blue]
      > when you go into the code and fix the problem, save the changes, when you
      > refresh the page, the error stays there, even though the code is correct.
      > The problem is not fixed until you rename the page, and the open it in[/color]
      your[color=blue]
      > browser to work fine??
      >
      > Any suggestions, I believe this begin happening after SP4 install? is this
      > just coincidence or did SP4 cause this?
      >
      > -Archi3
      >
      >[/color]


      Comment

      Working...