views:

23

answers:

2

If I have multiple pages that refer to a single pagehandler script, will the script be called from the browser cache if I navigate from one of these pages to another?

+1  A: 

Yes. Here's a workaround: http://stackoverflow.com/questions/206783/when-does-browser-automatically-clear-javascript-cache

Tudorizer
Glad you found this helpful :)
Tudorizer
A: 

Yes. External javascript files can be cached in the same way as images.

Your server (apache, iis, etc) will need to be configured to send out the correct http headers to ensure the browser knows if/how to cache the assets.

Ben Rowe