Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have error : Object reference not set to an instance of an object.
when i execute below code.
plz give me solution.

HTML
string str = HTML.ToString(); // StringBuilder to string
        Document document = new Document(PageSize.A4, 20, 25, 35, 35);
        try
        {

            PdfWriter.GetInstance(document, new FileStream(Server.MapPath(".") + @"\Chap0101.pdf", FileMode.Create));
            document.Open();

            iTextSharp.text.Image pdfImage = iTextSharp.text.Image.GetInstance(Server.MapPath("~/images/logo.png"));
            pdfImage.ScaleToFit(100, 50);
            pdfImage.Alignment = iTextSharp.text.Image.UNDERLYING; pdfImage.SetAbsolutePosition(180, 760);
            document.Add(pdfImage);

            
            //HTMLWorker hw = new HTMLWorker(document);
            

            //here error occurs
            List<itextsharp.text.ielement> htmlarraylist = new List<ielement>(iTextSharp.text.html.simpleparser.HTMLWorker.ParseToList(new StringReader(str), null));</ielement></itextsharp.text.ielement>
            foreach (IElement element in htmlarraylist)
            {
                document.Add(element);
            }
                    
            document.Close();
            ShowPdf("Chap0101.pdf");
        }
        catch (Exception ex)
        {

        }


thanx in advace..
Posted
Updated 24-Sep-12 20:38pm
v3

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