Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
_global.sendInfo = function(){
sendVars = new LoadVars();
sendVars.email = _root.email_txt;
ASPresponse = new LoadVars();
ASPresponse.onLoad = _global.receiveReply;
sendVars.sendAndLoad("[URL unfurl="true"]http://localhost/sendandload/processForm.asp",ASPresponse,"POST");[/URL]
}
_global.receiveReply = function(result){
//in your case the XML functions would go here
if(result){
_root.reply = ASPresponse.reply;
}else{
_root.reply = "Error";
}
}
on(release){
_global.sendInfo;
}
<%
'When flash sends
myBody = Request.Form()
'Return values to flash
Response.Write "&reply=Received "& myBody
%>