Hello,
Is there a way to limit downloading flash files in to the user's system??? I tried the cache approach but it is not working in IE (although it's working fine in Netscape).
I tried the following code, as was suggested by a member in this forum.
header("Cache-Control: no-cache");
header("Pragma: no-cache");
header("Expires: -1");
I tried this too with no luck
header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache"); // HTTP/1.0
Does anybody has any suggestions??? Is there a method other than limiting cacheing???