How to download a file from a remote server using asp.net

The code below is great for downloading a file from the current pc.plz, offering me to download it from a remote server using an IP address or any other method.

protected void Button1_Click(object sender, EventArgs e)
{
    const string fName = @"C:\ITFSPDFbills\February\AA.pdf";
    FileInfo fi = new FileInfo(fName);
    long sz = fi.Length;

    Response.ClearContent();
    Response.ContentType = MimeType(Path.GetExtension(fName));
    Response.AddHeader("Content-Disposition", string.Format("attachment; filename = {0}", System.IO.Path.GetFileName(fName)));
    Response.AddHeader("Content-Length", sz.ToString("F0"));
    Response.TransmitFile(fName);
    Response.End();
}

public static string MimeType(string Extension)
{
    string mime = "application/octetstream";
    if (string.IsNullOrEmpty(Extension))
        return mime;

    string ext = Extension.ToLower();
    Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.ClassesRoot.OpenSubKey(ext);
    if (rk != null && rk.GetValue("Content Type") != null)
        mime = rk.GetValue("Content Type").ToString();
    return mime;
}
+3
source share
2 answers

It would be easier to do this as follows:

WebClient webClient = new WebClient();
webClient.DownloadFile(remoteFileUrl, localFileName);
+3
source

You can use HttpWebRequest, for example:

        Uri uri = new Uri(""); // Here goes uri to the file.
        HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(uri);

        using (HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse())
        {
            using (StreamReader reader = new StreamReader(webResponse.GetResponseStream()))
            {
                // Process response.
            }
        }
-1
source

Source: https://habr.com/ru/post/1737285/


All Articles