Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cache

Status
Not open for further replies.

feemi

Programmer
Feb 3, 2001
17
US
Ok, this one is a little crazy. I've been maintaining this website for about six months. All the sudden, my ASPs are caching somewhere. My updated are not evidenced in the browser. The http headers option in IIS is set to expire immediately. I have stopped and started the website. I have rebooted the proxy server. I have verified that it isn't the client. All of the sudden this week, all of my pages are cached somewhere and none of my updated are evidenced in the browser. I have even renamed the file, and the old file is still loaded. I can manualy specify the new asp, and it successfully loads.

A little crazy I know. Any suggestions?
 
feemi,

Place the following line in your HEAD section.

<META HTTP-EQUIV=&quot;Pragma&quot; CONTENT=&quot;no-cache&quot;>

Cheers,
fengshui_1998
 
That would seem to work, but my page is already cached. I have added several lines of code to prevent the caching. Problem is that it is already cached.
 
I had this very same problem...

Read this thread to find out about setting your web sites to not cache in servers (proxy, etc), or on the client side... faq333-1034
-Ovatvvon :-Q
 
feemi,

On the next go around, it should prevent your page from being cached. If it's not in cache, then it can't use it. So that means it will always go to the server to get that page.

fengshui_1998
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top