Hi!
I have this code to save a image from flash, only the code is in PHP but i would like to have it in ASP..
Could someone help me with this?
This is the code:
<?php
$fileName = $_GET['filename'];
$fp = fopen( $fileName, 'wb' );
fwrite( $fp, $GLOBALS['HTTP_RAW_POST_DATA'] );
fclose( $fp );
?>
Hope that someone can help me with this!
Regards!
Willem