If I want to convert my PHP application to ASP.NET… what do you recommend and why?
I'm currently using PHP's simplexml_load_string() method because it's, well, …simple.
For example, for PHP to process an http request in the form of XML I just use:
$FILERAWDATA = file_get_contents("php://input");
$xml = simplexml_load_string($FILERAWDATA);
Then grab the values from the xml nodes like such:
@$itemid = $xml->itemid;
// then use the node value as a PHP var $itemid
So, does ASP.NET have anything similar?
Thanks for reading.
AlejandroConsueloRodriguezMiguel -- also known as Fred :)