简体   繁体   中英

how to download Pdf to client machine

I created a Location to save converted PDF from asp.net like this:

public string fileUploadLoc = ConfigurationManager.AppSettings["PDFFileLoc"];
//set from web.config eg: d:/temp/employeeData

 DirectoryInfo destination = new DirectoryInfo(Server.MapPath("~/" + fileUploadLoc));
 Directory.CreateDirectory(Server.MapPath("~/" + fileUploadLoc));
destination = new DirectoryInfo(Server.MapPath("~/" + fileUploadLoc));
destination.Create();

and i converted asp.net page to PDF. How to save this converted PDF to the specified Location.? Please help me.

use this before serializing the file into the response stream:

HttpContext.Current.Response.Clear();
        HttpContext.Current.Response.AddHeader(
            "content-disposition", string.Format("attachment; filename={0}", fileName));
        HttpContext.Current.Response.ContentType = "application/pdf";
        //HttpContext.Current.Response.ContentEncoding = Encoding.UTF8;
        HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);

        HttpContext.Current.Response.HeaderEncoding = Encoding.UTF8;
 System.IO.FileStream file = new System.IO.FileStream(Server.MapPath("~/" + fileUploadLoc" System.IO.FileMode.OpenOrCreate);
 PdfWriter pdfWriter = PdfWriter.GetInstance(pdfDoc, file);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM