problem with passing data from flash(actionscript 3) to asp.net

Joined
Apr 22, 2011
Messages
1
Reaction score
0
i have code in flash (as3):
Code:
function xacnhanclick(evt:Event):void
          {
               
               sendxml();
          }
          
          public function sendxml():void
          {
               
               var req:URLRequest = new URLRequest("Chonphong.aspx");
               var a:URLVariables=new URLVariables();
               a.text="abc";
               
               
              req.method = URLRequestMethod.POST;
              req.contentType = "text/xml";
              req.data =a;
               
              sendToURL(req);
               trace(req.data);
          }
how do i get data from this httpPost request in asp.net?
this is my code
http://www.mediafire.com/download.php?sqg4z5her5a5jl8
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,038
Latest member
OrderProperKetocapsules

Latest Threads

Top