Sunday, 25 August 2013

How to store recorded data using Flash and store file in ASP.net

How to store recorded data using Flash and store file in ASP.net

I am recording sound in Flash Action script 3.0 and store data in php file
like this below code, I need to done this same task using ASP.net please
help me to do.
$recorder = file_get_cont`enter code here`ents('php://input');
$name = basename($recorder);
$status = move_uploaded_file($recorder,
'http://www.mysite.com/audiofiles/' . $name);
if($status){
echo 'WORK';
}

No comments:

Post a Comment