Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Used to developing in PHP, and have little experience in ASP, so please bare with me:

I'm working on a project for a client who's site was developed years ago with .asp.

I am implementing a new design (html/css) and have been going through the .asp pages and removing the old HTML and replacing it with the new code, developed by me.

The Pages show no change when the page is loaded live on the website. When I open the .asp file in a text editor, the new code is there. I've read up on this and it seems like the server may be caching the .asp files, but I do not know how to clear this cache, as I am simply editing the files in a simple text editor (textmate).

Any suggestions?

Thanks!

share|improve this question
Version of IIS would be useful? Which browsers have you tried? – AnthonyWJones May 11 '12 at 9:05
I have no info on the IIS. I (for some reason) thought I could add HTML / CSS to the pages without access to that. I'm downloding the files with Cyber Duck and Editing with Textmate - this is the only software I am using. Tried in Safari, Firefox, and Chrome. – Nathan Hackley May 11 '12 at 15:29

4 Answers

Try testing your page in another web browser to see if the situation is really caching. If you try chrome, use the incognito mode (ctrl+shift+n) or start Private Browsing in FireFox.

If you still don't see the changes, then chances are, you are not loading the web pages you are actually editing. There might be a duplicated copy of the files on the web server and the web site is being directed to a virtual IIS folder.

Ignore the asp pages and add a new test image or web page to the folder you are editing and see if you can see that new test file when you go to it in the web browser.

If you confirmed that you are editing the correct files based on the test above, then I'd suggest restarting the application pool if you have access to the web server. You can optionally add a web.config file to the root folder of the website (if the IIS server is configured for asp.net)

Here is the minimal code for a web.config file:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.web>

  </system.web>
</configuration>
share|improve this answer
The question is about Classic not ASP.Net. Web.config doesn't apply in this context – Rafael May 11 '12 at 15:05
I am definitely editing the correct files. I've run a few tests of this kind to double check. I've also tried other browsers, and no change. Is there a way for me to gain access to IIS when working remotely? – Nathan Hackley May 11 '12 at 15:24
@Rafael the web.config file was just a trick to help reset IIS, which might cause cached files, even classic asp pages, to clear. Nathan, still try what Rafael mentioned about the Response.Expires = 0 but this has to be placed at the top of the asp page (before any HTML is sent to the browser) or it won't work. <% Response.Expires = 0 Response.CacheControl = "no-cache" Response.AddHeader "Pragma", "no-cache" %> – signal2013 May 11 '12 at 19:05
up vote 1 down vote accepted

Turns out is was a simple IIS setting that was being over-ruled by another. The network admin found the fix.

Thanks everybody!

share|improve this answer
2  
What was the IIS setting (or settings) that needed to be fixed? (Could be helpful for future visitors who see this question) – Cheran Shunmugavel May 24 '12 at 7:11

Did you clear the browser cache? Based on NET framework for ASP pages, temporary files are created at %Windows%\Microsoft.NET\Framework\\Temporary ASP.NET Files. Remove any files created there and refresh ASP page using CTRL+F5.

share|improve this answer
The question refers to classic ASP not asp.net. – AnthonyWJones May 11 '12 at 9:02

Usually forcing a browser refresh with Ctrl + Shift + R should refresh the page on the server. In rare cases, you'll have to do this for every page. Experienced and solved it this way in IIS 5 and IIS 6, so if the same condition is happening for you in later versions of IIS, try it.

share|improve this answer
Forget to mention that you should do this in Internet Explorer (6, 7, 8 or 9 - it works for me in all of those versions) and then it'll work after a normal refresh in most other browsers. – stealthyninja May 11 '12 at 17:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.