Any ideas on how I would go about converting these few lines of PHP to ASP. I worked out a little bit but don't know of an equivalent for opening foreign files in ASP...
PHP Code:
<?php
$filename = 'http://twitter.com/statuses/user_timeline.xml?screen_name=j00_00l';
$handle = fopen($filename, 'r');
$contents = stream_get_contents($handle);
fclose($handle);
echo $contents;
?>