Hello,
This question has been asked many times and have also followed most of the suggestions. Please guide me with proper coding.
Purpose: The following code downloads a file from external servers. The main purpose of the code is to hide the source server.
Problem: The download speed is the main problem. When I directly download from the source server using the browser, it downloads at very fast. But when I download using the following code, its the worst speed. The speed at which my code downloads, wherever
I host my application, is the constant speed and its 544kbps. I took the help of Windows Task Manager. The following test url is hosted at godaddy server.
Test Url: http://www.fenilcomics.com/kishan/
Code:
var request = (HttpWebRequest)WebRequest.Create(link);
request.Pr ...
Go to the complete details ...