Web request returns "DOS"

Posted by jlezard on Stack Overflow See other posts from Stack Overflow or by jlezard
Published on 2010-06-10T10:54:12Z Indexed on 2010/06/10 11:02 UTC
Read the original article Hit count: 292

Filed under:
|

I am getting a "DOS" instead of the html string ....

let getHtmlBasic (uri :System.Uri ) =
    use client = new WebClient()
    client.DownloadString( uri)


let uri = System.Uri( "http://www.b-a-r-f.com/" )
getHtmlBasic uri

This gives a string, "DOS"

Lol what the ?

All other websites seems to work ...

© Stack Overflow or respective owner

Related posts about F#

Related posts about webcrawling