vote up 1 vote down star
1

Id like to be able to write a function that reads an external news site and returns the source code of the target page. Any ideas and/or information to get me started?

flag

78% accept rate

3 Answers

vote up 7 vote down check
string GetOtherPage(System.Uri url)
{
    return new System.Net.WebClient().DownloadString(url);
}
link|flag
this one-liner should'nt be one-liner ;) string content; using(var wc = new WebClient()){ content = wc.DownloadString(url); } return content; – smoothdeveloper Dec 11 '08 at 14:33
Nah: if there's an exception or something it will still be disposed right away because of the scope block created by the function. – Joel Coehoorn Dec 11 '08 at 14:34
I didn't know that c# with it's GC was applying the RAII idiom. I thought it would do for (stack allocated) struct but not for full fledged classes. I'm going to check this. – smoothdeveloper Dec 11 '08 at 14:38
I doubt it follows that 'idiom' exactly: it's more a practical thing: if the exception is unhandled the program and all it's resources are cleaned up anyway. If it is handled, then it's just as good as if the function executed normally, and with no references to the object it can be GC'd. – Joel Coehoorn Dec 11 '08 at 14:41
vote up 0 vote down

You can look at System.Net.WebRequest class and the sample

But please, don't make such crappy code as MSDN sample yourself, use the using idiom where appropriate

link|flag
vote up 0 vote down

If you are talking about the HTML source, then Joel's answer is correct.

However, if you are talking about the actual codebehind for dynamic pages, the answer is "thankfully, no". Most properly configured sites will not return the source code that is dynamically executed to make a page.

link|flag
yeah its just reading the rendered page, not the code behind. – Anders Dec 11 '08 at 14:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.