2017年4月26日 星期三

檔案下載


string sFile = @"c:\temp\ff.pdf";
WebClient wc = new WebClient();
byte[] b = wc.DownloadData(sFile);
Response.Clear();
Response.AddHeader("Content-Disposition", "attachment;filename=uu.pdf");
Response.BinaryWrite(b);
Response.End();

沒有留言: