Download pdf programmatically

后端 未结 3 2108
闹比i
闹比i 2021-02-18 23:57

How can I download a PDF and store to disk using vb.NET or C#?

The URL (of the PDF) has some rediection going on before the final PDF is reached.

I tried the bel

3条回答
  •  无人及你
    2021-02-19 00:01

    You can also try the following code sample to download pdf files

     Response.ContentType = "Application/pdf"; 
     Response.AppendHeader("Content-Disposition", "attachment; filename=Test_PDF.pdf"); 
     Response.TransmitFile(Server.MapPath("~/Files/Test_PDF.pdf")); 
     Response.End(); 
    

提交回复
热议问题