found the answer

Thanks to all who replied


[Bindable]
var dt : String = new Date().toTimeString();

url="http://mysite.net/info_wrapper.php?customer={customer.text}&username={username.text}&password={password.text}&submitDT={dt}";
/>




--- In [email protected], "markcavins" <[EMAIL PROTECTED]> wrote:
>
> I think this might be a solution to the issue but I am not quite sure
> how to tackle it. What would need to be added in order to create the
> random number/date (I have seen some people talk about it but I have
> never seen it done).
> 
> Any links you could send on the subject would be great. I have done
> some searching but can't seem to find a solution.
> 
> Thank you.
> 
> --- In [email protected], "Matt Chotin" <mchotin@> wrote:
> >
> > The issue is if you have a test certificate for https, not
necessarily a
> > test server.  
> > 
> >  
> > 
> > It may be that IE simply isn't attempting to hit the server.  Can you
> > try adding an additional dummy query parameter so the url changes?
> > 
> >  
> > 
> > Also check your server to see if you can adjust the cache settings on
> > the page that is being returned.
> > 
> >  
> > 
> > From: [email protected]
[mailto:[EMAIL PROTECTED] On
> > Behalf Of Sherif Abdou
> > Sent: Tuesday, January 22, 2008 5:06 PM
> > To: [email protected]
> > Subject: Re: [flexcoders] Re: Problems with IE and refreshing data
> > 
> >  
> > 
> > Ya I think, I remb reading that somewhere that IE has some weird
> > restrictions like that if it is a test server. I would wait on someone
> > who knows more than me
> > 
> > ----- Original Message ----
> > From: markcavins <markcavins@>
> > To: [email protected]
> > Sent: Tuesday, January 22, 2008 6:59:32 PM
> > Subject: [flexcoders] Re: Problems with IE and refreshing data
> > 
> > It is a test server. The request makes request to the live server but
> > it is a test server. what would the restrictions be?
> > 
> > --- In [EMAIL PROTECTED] ups.com
<mailto:flexcoders%40yahoogroups.com>
> > , Sherif Abdou <sherif626@ ..> wrote:
> > >
> > > is that a test server or online since IE has some restrictions if it
> > is local
> > > 
> > > 
> > > ----- Original Message ----
> > > From: markcavins <markcavins@ ...>
> > > To: [EMAIL PROTECTED] ups.com
<mailto:flexcoders%40yahoogroups.com> 
> > > Sent: Tuesday, January 22, 2008 4:56:04 PM
> > > Subject: [flexcoders] Problems with IE and refreshing data
> > > 
> > > Hello,
> > > 
> > > I have this app that was refreshing data in development but now
once I
> > > deploy it to my server I am not getting the data to refresh in
> > > IE(6/7). In FF every thing updates and resends to the server just
> > > fine. Here is the code that makes it work.
> > > 
> > > the httpservice
> > > 
> > > Code:
> > > 
> > > <mx:HTTPService id="tempXML" resultFormat= "e4x"
> > > result="onResult( event)" 
> > > url="http://mysite. <http://mysite./>  net/info_ wrapper.php?
> > customer={customer. text}
> > &amp;username= {username. text}&amp; password= {password. text}"
> > > />
> > > 
> > > <mx:TileList dataProvider= "{_xlcMyListData }" labelField=" fleet"
> > > left="35" right="15"
> > > width="350" backgroundColor= "#000000" color="#ff0000" fontSize="27"
> > > borderColor= "#000000" columnWidth= "315" rowHeight="50"
> > > themeColor=" #808080" fontWeight=" bold" allowMultipleSelect
> > ion="true" 
> > > id="TileList1" height="0" y="202" x="178"/>
> > > 
> > > The Updater script
> > > 
> > > Code:
> > > 
> > > import mx.collections. XMLListCollectio n;
> > > 
> > > [Bindable]
> > > private var _xlcMyListData: XMLListCollectio n;
> > > 
> > > private function onResult(Event: ResultEvent) :void {
> > > var xmlResult:XML = XML(Event.result) ;
> > > _xlcMyListData = new XMLListCollection( xmlResult. .asset);
> > > }
> > > 
> > > The refresh button
> > > Code:
> > > 
> > > <mx:Button label="Refresh Page Now" height="27" fillAlphas=" [1.0,
> > > 1.0]" fillColors=" [#030000, #030000, #474545, #474545]"
> > > borderColor= "#DCDEDF" click="tempXML. send();"/ >
> > > 
> > > Any Ideas?
> > > 
> > > 
> > > 
> > > 
> > > 
> > > 
> > ____________ _________ _________ _________ _________ _________ _
> > > Looking for last minute shopping deals? 
> > > Find them fast with Yahoo! Search. 
> > http://tools. search.yahoo. com/newsearch/ category. php?category=
> > shopping
> >
<http://tools.search.yahoo.com/newsearch/category.php?category=shopping>
> > 
> > >
> > 
> >  
> > 
> >  
> > 
> > ________________________________
> > 
> > Never miss a thing. Make Yahoo your homepage.
> > <http://us.rd.yahoo.com/evt=51438/*http:/www.yahoo.com/r/hs>
> >
>


Reply via email to