attached is an xml very simple script in flash swf - however i do not know how
to write the server side .asp
can someone tell me what should be the script in th ok.asp ?
URL="http://www.tovale.co.il/ok.asp";
function init(){
trace(objToRecieve);
}
xmlToSend="<thenumber>PERFECT</thenumber>";
objToSend=new XML(xmlToSend);
objToRecieve = new XML();
objToRecieve.onLoad=init;
objToSend.sendAndLoad(URL,objToRecieve);
TimSymons - 02 Nov 2006 21:21 GMT
The following link will give you some good ASP code for sending and receiving XML using ASP.
http://secretgeek.net/XMLSendReceive.shtml
Tim