Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Response.TransmitFile(filename);
  2.  
  3. Response.ContentType = "application/pdf";
  4. Response.WriteFile(@"C:DownloadsTest.pdf");
  5. Response.Flush();
  6.  
  7. Responce.AddHeader("content-disposition","attachement;filename=name.pdf");
  8. Response.TransmitFile(filename);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement