I have following HTML. Look at input tag and comment below (Real cause of the problem).

<div class="col-xs-12 GPAMainForm">
  <div class="col-xs-10 col-xs-offset-1">
    <div style="border: 1px double black; padding: 2px">
      <div>
        <table class="table">
          <tr class="border">
            <td class="border">
              <label class="control-label">Company Name</label>
            </td>
            <td class="border">
               <input type="text" />
               <!--
               If I remove input tag, pdf gets generated else it show error like:
               `Invalid nested tag td found, expected closing tag input`
               -->
            </td>
          </tr>
        </table>
      </div>
    </div>
  </div>
</div>

Instead of input tag I tried to go with <asp:TextBox ID="TextBox2" runat="server"></asp:TextBox>


Error

Invalid nested tag td found, expected closing tag input

Cause of problem

But when I see parsed html, I can clearly that it somehow removes / and it generates <input type="text>.

same with <asp:textbox> it removes ending tag and generates

<input name="ctl00$MainContent$TextBox2" id="MainContent_TextBox2" type="text">

Please help.

Edit Post:

 try
            {
                string htmlContent = TextBox1.Text.Replace("\r", "\n").Replace("\n", "");// you html code (for example table from your page)
                Document doc = new Document();
                string FileName = Guid.NewGuid().ToString();
                PdfWriter writer = PdfWriter.GetInstance(doc, new FileStream("C:\\Nikhil Shah\\Projects\\Local Projects\\PracticeDemo\\PracticeDemo\\PDF\\" + FileName + ".pdf", FileMode.Create));
                doc.Open();
                var cssResolver = new StyleAttrCSSResolver();
                var cssFile = XMLWorkerHelper.GetCSS(new FileStream(HttpContext.Current.Server.MapPath(@"~\Content\myCss.css"), FileMode.Open));
                cssResolver.AddCss(cssFile);


                CssAppliers ca = new CssAppliersImpl();
                HtmlPipelineContext hpc = new HtmlPipelineContext(ca);
                hpc.SetTagFactory(Tags.GetHtmlTagProcessorFactory());

                // PIPELINES
                PdfWriterPipeline pdf = new PdfWriterPipeline(doc, writer);
                HtmlPipeline htmlPipe = new HtmlPipeline(hpc, pdf);
                CssResolverPipeline css = new CssResolverPipeline(cssResolver, htmlPipe);

                XMLWorker worker = new XMLWorker(css, true);
                XMLParser p = new XMLParser(worker);
                StringReader sr = new StringReader(htmlContent);
                p.Parse(sr);
                doc.Close();

                Response.ContentType = "application/pdf";
                Response.AppendHeader("Content-Disposition", "attachment; filename=" + FileName + ".pdf");
                Response.TransmitFile(Server.MapPath(@"~\PDF\" + FileName + ".pdf"));
                Response.End();
            }
            catch (Exception ex)
            {
                Response.Write(ex.Message.ToString());
            }
0

There are 0 best solutions below