I see a problem with our web application. We have some wave files that we can play (for example, ding.wav), and we tried to preload the wave files, but using Fiddler, we see that the WAV files are never cached, like (js and css and image files) . We always see HTTP 200 instead of HTTP 304.
Any ideas on how to tell IE that it should cache wav files?
We insert a div:
<EMBED SRC='ding.wav' AUTOSTART='FALSE' HIDDEN='TRUE'>
source
share