vote up 1 vote down star

I have an external JS file that I include in my ASPX page. Whenever I make changes to the JS, I need to close the browser and reopen it to see the changes. I have tried Ctrl F5 to refresh the cached JS copy but that doesn't work in IE.

Is there some way to not restart the browser to see the updated changes?

flag

38% accept rate
I feel your pain – Akrikos Feb 20 at 15:00

7 Answers

vote up 3 vote down check

As others suggest, I would switch to Firefox for developing and keep IE only for testing.

If you want to keep developing on IE try the Internet Explorer Developer Toolbar. It offers some of the functionality of Firebug and you will have quick access to options for disabling the cache or clearing the cache for a specific domain, solving your caching problems.

Cache menu

link|flag
Yes, that toolbar is essential if you want to develop in MSIE. – some Feb 20 at 18:24
vote up 0 vote down

Trying holding down the shift key when you click the refresh button.

link|flag
Ctrl + F5 is the shortcut for forcing a refresh using IE. – John Topley Feb 20 at 14:34
Maybe, but shift-refresh seems to work for me pretty consistently, while ctrl+F5 doesn't. – Joel Coehoorn Feb 20 at 14:42
stackoverflow.com/questions/385367/… – some Feb 20 at 15:01
Nice answer, have a badge (just gave you the 10th upvote) – Joel Coehoorn Feb 20 at 15:08
Now if you could include shift+Refresh in that table (it was missing)... – Joel Coehoorn Feb 20 at 15:09
show 1 more comment
vote up 0 vote down

In my experience IE caches things extremely aggresively. You might have to hit Ctrl + F5 several times until your changes show up.

link|flag
vote up 1 vote down

I sometimes keep the JavaScript or CSS files open in other tabs and force reload those tabs to get IE to understand "please reload everything, no really, everything."

link|flag
vote up 0 vote down

Ctrl-F5 or Shift + Click on Refresh may work. If not, you can forcefully clear the cache from Tools/Internet Options/General/Temporary Files/Delete.

link|flag
vote up 0 vote down

I would strongly recommend developing in another browser... the aggressive caching can be painful with IE. After developing you can come back and test in IE.

Also, Firebug (or something like it) is something I can't do without as web developer. Another good Firefox addon is the Web Developer Toolbar (which has an easy menu option to clear FF's cache).

If you would rather just stick with IE, I think James Socol's keeping things in other tabs would be the most sure method to avoid caching.

link|flag
vote up 0 vote down

Do you have your IE set to check for newer versions of stored pages every time?

Tools-->Internet Options-->Settings [btn] -->Every visit to the page [radio]

link|flag
yes, i do have those settings – DotnetDude Feb 20 at 16:49

Your Answer

Get an OpenID
or

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