Is there any way to generate PDF files from classic ASP? I have a bunch of user-entered data that needs to be turned into a PDF that the user can download. How can I do this? OpenOffice allows exporting documents to PDF, so could this somehow be leveraged?
相关问题
- Correctly parse PDF paragraphs with Python
- Set BaseUrl of an existing Pdf Document
- Can you set the Location header in a chunked http
- If condition not working in classic ASP
- How can I get all text from a PDF in Swift?
相关文章
- Render embedded image in PDF using Flying-Saucer f
- File Upload of more than 4GB
- Python Sendgrid send email with PDF attachment fil
- Can a VBScript function return a dictionary?
- C# MVC website PDF file in stored in byte array, d
- Generating .afm from .ttf [closed]
- How To Programmatically Enable/Disable 'Displa
- Returning plain text or other arbitary file in ASP
See a full list of PDF components here: http://www.aspin.com/home/components/document/pdf Many of them are free.
It is also possible to use XSLT to output PDF but I am not sure if this is supported by the Microsoft XML Parser. I remember there were something stopping me when I tried to do this 3-4 years ago. Might be worth checking out know depending out the type of data you have as source.
However if these are static files or a one time job consider using a PDF converter on your computer and just upload the files to the server. There are heaps of tools for this, including Adobe Acrobat.
I played around a bit with this (Persits ASPPDF): http://www.asppdf.com/
Maybe running an external application that could be using CrystalReports... and you just pass it as an xml?
That's how i would do it... (lazy mode)