Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
kelvinkoh #1
Help Needed : Flash/ASP database works in Firefox butnot IE!
Hi fellow flash wielders,
I am currently building this guestbook in Flash 2004, and using ASP to talk to
an Access database. Everything works well when I compile and test it on the
Flash application and on Firefox, but when I tried to run it on Internet
Explorer, it just doesn't work! The SWF file is showing, and the database is
accepting the data inputted, but the added data is not refreshed and shown
immediately, as it is suppose to!
Here's the link : [url]http://a.1asphost.com/kelvinkoh/v9/shoutbox.html[/url]
Try running it on IE and Firefox and you'll get the idea. The strange thing is
even when I click on the browser refresh button on IE, the data would not
refresh!
Would be grateful to anyone who can enlighten me on this, as I'm getting a
headache trying to solve this issue.
Thanks![url]http://a.1asphost.com/kelvinkoh/v9/shoutbox.html[/url]
kelvinkoh Guest
-
FlvPlayer works with FireFox but not with IE
Hi, I created a FLV player to play remote .FLV movie. It works with Firefox but not with Internet Explorer 6 or 7. In fact, when I test it... -
Works in Firefox but not in IE
I have a webpage that when published looks exactly how I want it to in firefox but not in Internet Explorer. The problem is it shows the bulleted... -
Flash 9 works in IE7 but not FireFox or Opera
I can dl flash movies just fine in IE7 but they fail to load in firefox 2 and opera 9. I have most recent versions of everything, have uninstalled... -
(HELP) website with flash+xml displays fine in IE butnot firefox
I'm totally new here but I really really need help debugging my website. The problem is I have a flash file the loads an xml file to display... -
Firefox solves IE conflict - 8 player works!
Just wanted to let you know that I read almost the entire forum last night trying to get a resolution to this annoying problem. I realized that... -
kelvinkoh #2
Re: Help Needed : Flash/ASP database works in Firefoxbut not IE!
Got the answer behind this. The problem did not lie with the Flash SWF file nor
with the ASP pages. Apparently the reason why the data is not refreshing is
because Internet Explorer is data caching, and it did not recognise that there
is new data.
The way to go around this, is to "trick" the browser that we are submitting a
different query, so it will look up the database instead of using the data from
the cache.
The default code I used originally is :
loadVariables("sb_output.asp?Record=0", shoutbox_post);
The amended code is as follows :
loadVariables("sb_output.asp?Record=0" add "&random=" add random(100000),
shoutbox_post);
In this manner, the loadVariables command is always different (or at least the
odds are 1 : 100000) and IE "thinks" that a totally different query is being
posted and will have to relunctantly retrieve the data!
Hope this helps anyone out there!
kelvinkoh Guest



Reply With Quote

