[Flash Development Notes] How to Prevent Flash SWF files from being cached on the client

Source: Internet
Author: User
Problem
How can I prevent Flash SWF from being cached on the client? That is, how to make the SWF file appear in the Temporary Folder of IE browser?

Method:

Generally, we disable caching for dynamic pages (such as ASP and PHP) by setting the HTTP header in the language, but SWF cannot directly set the HTTP header. You can add an HTTP header in IIS from the server side:

Cache-control: "No-Cache"
Pragma: "No-Cache"
Expires: "-1"

The operation method is shown in the figure below:

However, when setting IIS, note that if an HTTP header is set for the entire website, the content of the entire site (such as JPG, GIF, CSS, and HTML) will not be cached, this will cause these files to be re-downloaded every time. You can createVirtual directoryAnd then set the HTTP header for this virtual directory to put the SWF file that is not cached in it.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.