Hi there all. (first of all, sorry about my bad english)
I need some help over here. I'm developing an asp.net application that works as an administrator site for other application built in flash. The basic Idea is to generate xml dinamic so the flash movie can read its content any time is invoked..
I was forced to implement a "preview" kind button that allows to see who the flash will be seen. So i've made an extra aspx page that contains the flash object.
There comes the problem. The 1st time that u watch the preview its ok.. but seems like the object is stored on cache, so if u make any change in the content with asp, generate another xml, but the preview is still the same. So i have to go to my internet options, clear cache and then preiew so it works fine (I don want to do that)
I've tryed everything.:
meta tags: <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<meta HTTP-EQUIV="Cache-Control" content="no-cache" />
Server side HTML Header edit:
Response.Cache. SetCacheability (HttpCacheabili ty.No Cache);
Flash code to avoid cache]:
var dummyquery:Stri ng = (isLocalFile ? "" : ("?random=" + Math.random() + "×tamp =" + (new Date()).getTime ()));
mymc.loadMovie( "mymovie.swf"+d ummyquery);
etc etc..
All of them seems to work fine on Firefox.. but IE is the "!%%#.
I dont know what else to do and i'm pretty frustrated now. So i'm asking for help.
I've also posted this on .NET disc.
I appriciate every single answer that u gusy can give me.. thanks.!!!
I need some help over here. I'm developing an asp.net application that works as an administrator site for other application built in flash. The basic Idea is to generate xml dinamic so the flash movie can read its content any time is invoked..
I was forced to implement a "preview" kind button that allows to see who the flash will be seen. So i've made an extra aspx page that contains the flash object.
There comes the problem. The 1st time that u watch the preview its ok.. but seems like the object is stored on cache, so if u make any change in the content with asp, generate another xml, but the preview is still the same. So i have to go to my internet options, clear cache and then preiew so it works fine (I don want to do that)
I've tryed everything.:
meta tags: <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
<meta HTTP-EQUIV="Cache-Control" content="no-cache" />
Server side HTML Header edit:
Response.Cache. SetCacheability (HttpCacheabili ty.No Cache);
Flash code to avoid cache]:
var dummyquery:Stri ng = (isLocalFile ? "" : ("?random=" + Math.random() + "×tamp =" + (new Date()).getTime ()));
mymc.loadMovie( "mymovie.swf"+d ummyquery);
etc etc..
All of them seems to work fine on Firefox.. but IE is the "!%%#.
I dont know what else to do and i'm pretty frustrated now. So i'm asking for help.
I've also posted this on .NET disc.
I appriciate every single answer that u gusy can give me.. thanks.!!!
Comment