Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1. http://www.youtube-mp3.org/
- 2. WebClient webClient = new WebClient();
- webClient.Proxy = null;
- webClient.UseDefaultCredentials = true;
- webClient.DownloadFileCompleted += new AsyncCompletedEventHandler(Complete);
- webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(Progress);
- webClient.DownloadFileAsync(new Uri(_url), _root + _name + ".mp3");
- 3. The above gets me 403 FORBIDDEN ERROR as it somehow still doesn't download....
- Is it detecting that I am using webclient?
Advertisement
Add Comment
Please, Sign In to add comment