Welcome, Guest
  • Author Topic: Accessing flash variables from within ASP  (Read 804 times)

    Paul

    • Server what's that
    • *
    • Posts: 44
      • View Profile
      • Email
    Accessing flash variables from within ASP
    « on: 11/05/02, 06:16 »
    Hi.

    i've used the Request.Form command in my asp page, id like to know of the other ways in which i can access variables after they have been sent by flash.


    Also, how exactyly does the load vars object work?


    Thanks in advance.

    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re:Accessing flash variables from within ASP
    « Reply #1 on: 11/06/02, 20:36 »
    The LoadVars object is capable of handling data from/to a file or backend script. It's like the XML object. Is easy to encapsulate loaded data and use callbacks. I.e

    myData = new LoadVars();
    myData.load("some.asp");
    myData.onLoad = function(){
     //do some stuff with the loaded variables
    }

    Jorge