Help Needed : Flash/ASP database works in Firefox butnot IE!

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. (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...
    5. 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...
  3. #2

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139