Click here to Skip to main content
Sign Up to vote bad
good
See more: ASP.NET
pl.. help me to fix the error
Unable to cast object of type 'iTextSharp.text.html.simpleparser.CellWrapper' to type 'iTextSharp.text.Paragraph'.
 

 

 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);
        UserListGrid.AllowPaging = false;
        FillGrid();
        UserListGrid.DataBind();
        UserListGrid.RenderControl(hw);
        UserListGrid.HeaderRow.Style.Add("width", "15%");
        UserListGrid.HeaderRow.Style.Add("font-size", "10px");
        UserListGrid.Style.Add("text-decoration", "none");
        UserListGrid.Style.Add("font-family", "Arial, Helvetica, sans-serif;");
        UserListGrid.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);------> Error
        pdfDoc.Close();
        Response.Write(pdfDoc);
        Response.End();
Posted 17 Dec '12 - 1:41
Edited 17 Dec '12 - 1:42


2 solutions

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 Sergey Alexandrovich Kryukov 445
1 OriginalGriff 295
2 Arun Vasu 253
3 Zoltán Zörgő 194
4 CPallini 173
0 Sergey Alexandrovich Kryukov 10,105
1 OriginalGriff 7,739
2 CPallini 4,181
3 Rohan Leuva 3,482
4 Maciej Los 2,999


Advertise | Privacy | Mobile
Web02 | 2.6.130523.1 | Last Updated 17 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid