For future references here is one
VB.NET Word component which I found to have a very satisfying PDF results. It offers a feature for
converting a HTML to a PDF file in .NET or you can just use a plain text while creating a PDF file.
Also it has this really nice feature for
exporting PDF files in ASP.NET, here is an example of it usage:
Code:
' Create a new empty document.
Dim document = New DocumentModel()
' Add document content.
document.Sections.Add(
New Section(document,
New Paragraph(document, "Hello world!")))
/ Stream file to browser in PDF file format.
document.Save(Me.Response, "Document.pdf");