I am using iText for .NET for converting HTML to PDF.
I\'m using HtmlParser to convert an HTML page to PDF, but the problem is that Htmlparser only seems to convert the
Oh i finally got the solution
Instead of using htmlparser class i have now used htmlworker class
here is the new code
ArrayList p = HTMLWorker.ParseToList(new StreamReader("fck.html"), st);
for (int k = 0; k < p.Count; k++)
{
final.Add((IElement)p[k]);
}
final.Close();