View previous topic :: View next topic |
Author |
Message |
phil karras
Senior Member

Joined: 15 Jul 2002
Posts: 1697
Location: MD
|
Posted: Tue Aug 27, 2002 7:29 am Post subject: Notes: On changes not showing up. |
 |
|
Here are a few very common errors for this kind of problem:
First: remember to SAVE the changes. Just because you changed the file in notepad does NOT mean they can be picked up by the browser. The Browser can only pick up from a file on the drive as it has been saved.
Second: Click on the refresh button on your browser once you have saved the file in notepad. You must FORCE the refresh.
Third: Make sure you are loading the file you are editing! This is a common problem, we THINK we are viewing the file we are editing only to find out some time later that they are two different files! One in the browser test/index.html and a different one in the editor: test/bak/index.htm.
When in doubt: create a new file and edit it to be sure you are doing things correctly. You should be able to see the changes in a simple HTML file. Add a new title, or something.
Hope one of those helps.
_________________
Phil K
Circle Software Consulting
Test website: http://cs.yrex.com/
Guidelines for Posting: http://jsworkshop.com/posting.html
IHBAAA = It Has Been Asked And Answered
KISS: http://jsworkshop.com/bb/viewtopic.php?t=508 |
|
Back to top |
|
 |
sohnee
Senior Member

Joined: 17 Jul 2002
Posts: 922
Location: UK
|
Posted: Fri Feb 11, 2005 4:38 am Post subject: |
 |
|
If this problem occurs when you load up your solution to the web - it may be that your browser is caching the pages.
This can be prevented in various ways, but a HTML method would be:
Code: |
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta http-equiv="Cache-Control" content="no-cache"> |
Server side methods are also available and are typically more reliable.
_________________
I work for: http://www.the-mag.me.uk/
Unsigned and Independent Music Magazine
|
|
Back to top |
|
 |
|