This worked! Thank you very much. :)
-David

--- In [email protected], SAAGAR SHETTY 
<[EMAIL PROTECTED]> wrote:
>
> Hi,
> 
> Since you are using
> private var HTTPService_ url:String = "company.php? ForceIEReload& 
ms="
> + 
> new Date().getTime( );
> 
> at the start of your code, it is being initialized only once. This 
means that your string is a constant throughout the program.
> That is why IE caches the data.
> 
> Instead try the following
> 
> 
> 
> private var HTTPService_ url:String = "company.php? ForceIEReload" ;
> 
> <mx:HTTPService url="{HTTPService_ url}"
> method="POST" id="data" 
> resultFormat= "e4x" result="xmlResultHandler(event) ;" 
> fault="xmlFaultHand ler(event) ;">
>    <mx:request>
>         <rndParam>{Math.round(Math.random()*1000)}</rndParam>
>     </mx:request>
> </mx:HTTPService>
> 
> 
> The text in bold is the additional code you need to add.
> Hope this helps
> 
> 
> Thanks,
> Saagar Shetty.
> 
> 
> 


Reply via email to