Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public IActionResult Download()
  2. {
  3. using (var client = new System.Net.WebClient())
  4. {
  5. var data = client.DownloadData("");
  6. var cd = new ContentDisposition
  7. {
  8. FileName = "",
  9. Inline = false
  10. };
  11. Response.Headers.Add("Content-Disposition", cd.ToString());
  12.  
  13. return File(data, "");
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement