Why doesn't this code work?
WebClient webClient = new WebClient();
webClient.Credentials = CredentialCache.DefaultCredentials;
webClient.DownloadFile(@"http://biblioteca.uqroo.mx/hemeroteca/tesol_quartely/1967_2002_fulltext/", "Vol_01_1.pdf");
System.Diagnostics.Process.Start("Vol_01_1.pdf");
Console.WriteLine("Worked!");
It starts to download but when I try to open the file it's corrupt and small in size. Any advice?
DA