getURL vs. loadVariables .. please help!

Hello, quick question

I have the following code:


[COLOR=blue][FONT=Arial]getURL("webform1.aspx?id=0&status=C",0,"Get");[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]

[/FONT][/COLOR]
[COLOR=blue][FONT=Arial][/FONT][/COLOR]
[COLOR=blue][FONT=Arial]everything this happen on my submit button, flash brings a new page by asp.[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]but i don’t want to bring a new page… all I want is to send the info to asp so asp gets updated and that’s it.[/FONT][/COLOR]
[COLOR=blue][FONT=Arial][/FONT][/COLOR]
[COLOR=blue][FONT=Arial]do i have to use loadVariables(“bla bla bla”[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]or instead[/FONT][/COLOR]
[COLOR=blue][FONT=Arial][/FONT][/COLOR]
[COLOR=blue][FONT=Arial]

[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]getURL("webform1.aspx?id=0&status=C",0,"Post");[/FONT][/COLOR]
[COLOR=blue][FONT=Arial]{/as][/FONT][/COLOR]
[COLOR=blue][FONT=Arial][/FONT][/COLOR] 
[COLOR=blue][FONT=Arial]please advice... thanks!  :huh: [/FONT][/COLOR]
[COLOR=blue][FONT=Arial][/FONT][/COLOR] 
[COLOR=blue][FONT=Arial][/FONT][/COLOR] 
[COLOR=blue][FONT=Arial][/FONT][/COLOR]

if you want to jsut send inforamtion without showing page use sendAndLoad, don’t worry you don’t have to load, but it will send :stuck_out_tongue:

http://www.macromedia.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary435.html


var sendform:LoadVars = new LoadVars();
sendform.id = 0;
sendform.status = "C";
sendform.sendAndLoad("webform1.asp", sendform, "POST");
sendform.onLoad = function(){
   trace ("you sent! (but you didn't load)")
};

ok i just tried that but i didn’t connect at all with my asp

did i forget anything there?

before i would connect with
getURL(webform1.aspx?id=1&status=I",0,“Post”);

and also with
loadVariables(webform1.aspx?id=1&status=I",0,“Post”);

those would connect with asp, bringing the new page that is killing me of course… any advice, tips … thanks guys! (-:

I bet it connected and you didin’t even know becasue it didn’t open a new page. What happens when you just type your url w/ variables in the browser? What exactly is this ASP page doing?

well for now what the asp page is receiving the id and the status, if it receives the id, then a new module should open up… and we are just doing that to test if its connecting… so this time we are not getting any respond… yes a new page didn’t open up… we continue with our movie… but there is no connection with the asp… we have the asp to respond to us if this is receiving the values… apparently is not.

then a new module should open up

:puzzle:

it seems to be a .NET issue… i hope so!.. i’m scratching my head to get this resolve!..

at least is connecting… so that’s good!