Flash <--> ASP

Im having problems connecting flash to asp

i have a movieclip with a dynamic text field with variable myVar.
This movieclip has an onLoad:


onClipEvent(load)
{
   loadVariables("locationofmyaspscript",this,"GET");
}

my asp is


<%
   myVar="testinggg"
   Response.write "myVar=" & URLEncode(myVar)
%>

here are the files as well

can anyone help me all i want is for the loadvariables to run the asp and for myVar in flash to be equal to “testinggg”

Thanx

Sorry for being stupid. just read someone elses post and realised i didnt dim my variables in the asp scrip

works fine now

yeah … i just posted a reply to some guys … he didnt DIM his variables… in asp…

asp isnt like actionscript… you gotta DIM the variables :slight_smile: