Click here to Skip to main content
15,888,279 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am looking for solution that will be helpful to export data from grid/data set/data table without using any third party dll (eg: iTextSharp).

please kindly Help me to find a solution.

Thanks in Advance

What I have tried:

Gridview to PDF[^]
Posted
Updated 27-Dec-16 0:56am

1 solution

You can do this way

C#
using (StringWriter sw = new StringWriter())
   {
       using (HtmlTextWriter hw = new HtmlTextWriter(sw))
       {
           //To Export all pages
           GridView1.AllowPaging = false;
           this.BindGrid();

           GridView1.RenderControl(hw);
           StringReader sr = new StringReader(sw.ToString());
           Document pdfDoc = new Document(PageSize.A2, 10f, 10f, 10f, 0f);
           HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
           PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
           pdfDoc.Open();
           htmlparser.Parse(sr);
           pdfDoc.Close();

           Response.ContentType = "application/pdf";
           Response.AddHeader("content-disposition", "attachment;filename=GridViewExport.pdf");
           Response.Cache.SetCacheability(HttpCacheability.NoCache);
           Response.Write(pdfDoc);
           Response.End();
       }
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900