Click here to Skip to main content
Sign Up to vote bad
good
See more: PDFconvertto
this is my code
Response.ContentType = "application/pdf";
        Response.AddHeader("content-disposition", "attachment;filename=UserDetails.pdf");
        Response.Cache.SetCacheability(HttpCacheability.NoCache);
        StringWriter sw = new StringWriter();
        HtmlTextWriter hw = new HtmlTextWriter(sw);
        DetailsView_icard.AllowPaging = false;
        DetailsView_icard.DataBind();
        DetailsView_icard.RenderControl(hw);
        DetailsView_icard.HeaderRow.Style.Add("width", "15%");
        DetailsView_icard.HeaderRow.Style.Add("font-size", "10px");
        DetailsView_icard.Style.Add("text-decoration", "none");
        DetailsView_icard.Style.Add("font-family", "Arial, Helvetica, sans-serif;");
        DetailsView_icard.Style.Add("font-size", "8px");
        StringReader sr = new StringReader(sw.ToString());
        Document pdfDoc = new Document(PageSize.A2, 7f, 7f, 7f, 0f);
        HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
        PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
        pdfDoc.Open();
        htmlparser.Parse(sr);
        pdfDoc.Close();
        Response.Write(pdfDoc);
        Response.End();
and my error is
Server Error in '/Pollux' Application.
The document has no pages.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
 
Exception Details: System.IO.IOException: The document has no pages.
 
Source Error:
 

Line 83:         pdfDoc.Open();
Line 84:         htmlparser.Parse(sr);
Line 85:         pdfDoc.Close();
Line 86:         Response.Write(pdfDoc);
Line 87:         Response.End();
Posted 21 Nov '12 - 23:50
Edited 22 Nov '12 - 0:00
Tadit Dash22.5K


1 solution

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 223
1 Ron Beyer 220
2 Aarti Meswania 200
3 Mahesh Bailwal 175
4 Rohan Leuva 170
0 Sergey Alexandrovich Kryukov 8,553
1 OriginalGriff 6,899
2 CPallini 3,648
3 Rohan Leuva 2,963
4 Maciej Los 2,308


Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 22 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid