Reputation: 74909
When we reference a SWF file from our ASP.NET page we append the version number to the SWF url, like App.swf?1.1.0.0
. In a recent update, Firefox has continued to use a cached swf even when the version number changed, App.swf?1.2.0.0
. We haven't noticed this behavior in other browsers.
Has anyone else seen this behavior? We don't want to disable caching completely. At this point we're probably going to change the name of the swf for each version, like App.1.2.0.0.swf
, which seems a bit excessive.
Thanks,
Upvotes: 1
Views: 294
Reputation: 386
Have you tried App.swf?version=1.1.0.0 rather than just App.swf?1.1.0.0 ?
Upvotes: 3