vote up 0 vote down star

I'm trying to download the source HTML of a website using the WebClient.DownloadData() method.

My method is supposed to give me the source:

public string GetSite(string URL)
    {
        Uri Site = new Uri(URL);

        byte[] lol = Client.DownloadData(Site);
        SiteSource = Encoding.ASCII.GetString(lol);

        return SiteSource;                    
    }

I've TRIPLE checked and when I write the exact same url of the URL parameter I send this method, my programs downloads something else entirely.

Pressing ctrl+U in firefox to see the source code shows me what I need to see (again, simple HTML), but in my software I see something entirely different.

What gives?

FOR CLARITY:

Imagine in Firefox you write www.google.com, viewing the source in Firefox you see:

<html>
   <head>
   </head>

   <body> 
       <h1>Hello!</h1>
   </body>
</html>

But if I were to use the DownloadData method for the exact same URL, my program would download a source code like this:

<html>
   <head>
   </head>

   <body> 
       <h1>Hello! This is something entirely different, i'm here to break your mind.</h1>
   </body>
</html>
flag

What does it download? It's got to be from somewhere - tracking it down will give you a clue as to what's going on. How about giving us a real-life example? – Michael Petrotta Oct 23 at 0:49
I'm kind of weary of posting the link here. Maybe people will throw a bitch fit. – Papuccino1 Oct 23 at 0:50

2 Answers

vote up 2 vote down check

The site may be doing browser detection, and serving up different HTML depending on whether it perceives the client to be Firefox, IE, a Web crawler, etc.

link|flag
Ah...is there a way for me to circumvent this via C#? I suspect this is the case. If it is, I'm fucked. :( – Papuccino1 Oct 23 at 0:52
Setting your User Agent to match that of Firefox's would circumvent it. – Will Eddins Oct 23 at 0:54
Specifically, webClient.Headers.Add("User-Agent", ...). See the WebClient.Headers docs in MSDN. – itowlson Oct 23 at 0:59
vote up 0 vote down

The site might use cookies that are set in Firefox, the User-Agent header or other HTTP headers to decide what content should be sent to you.

Since your C# program sends different data than Firefox the site might send different content.

link|flag

Your Answer

Get an OpenID
or

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