Yes it is, look at the LoadVars Object with the sendAndLoad method, you can
then post your form data to ASP, and return a response from the ASP form once
the operation is completed to fire a call back function in flash.
Regards,
Randy Poole
CIO
TelSim, Inc (http://www.telsim.com)
Yahoo_IM:telsim_inc
wannaData - 24 Mar 2005 19:24 GMT
Hello
Thank you for your reply, thanks to you the application is now on it's way.
Well, I have a new problem. I want to get and use in Flash the value of a
specific variable that comes from an ASP page.
I'm using the loadvars.load () object, but so far I was only able to get a
string with all the variables taht come from the ASP page, and not variable by
variable as I want, can't you help me on this? On being able to make an
actionscript variable with the value of a specific variable that comes from ASP?
Here is the code of the loadVars.load () that I'm using
var my_lv:LoadVars = new LoadVars();
my_lv.onLoad = function(success:Boolean) {
if (success) {
trace(this.toString());
} else {
trace("Error loading/parsing LoadVars.");
}
};
my_lv.load("http://localhost/ESTUDO/teste_vervariosdados_apagar.asp");