1
In my program I need to get the contents of my site, but the return of the downloadString method of the Webclient object returns null. The most intriguing is that there is no exception, the status code is 200, the request is performed perfectly but the url does not return anything.
WebClient wc = new WebClient();
String teste = wc.DownloadString("http://www.wiplay.com.br");
My website http://www.wiplay.com.br
When it comes to debugging HTTP problems, the Fiddler is your best friend.
– Paulo Morgado