Hi,
How can I convert a short PHP code to ASP? (not ASP.NET)
I found some online PHP->ASP converters, but without success.
Can someone please help me on this?
Here's the code:
Code:
<?php
if (isset($GLOBALS["HTTP_RAW_POST_DATA"])){
$xml = $GLOBALS["HTTP_RAW_POST_DATA"];
$file = fopen("data.xml","wb");
fwrite($file, $xml);
fclose($file);
echo($GLOBALS["HTTP_RAW_POST_DATA"]);
}
?>
Thanks a lot!
Batric