Generare un file PDF da un testo HTML
Con la classe Persist PDF è possibile creare dei file PDF da qualsiasi testo HTML presente nel sito. Basta creare un bottone per la stampa che richiama la classe Set PDF. In questa pagina si possono vedere le impostazioni per generare il file pdf con immagini, testata e piedi. visita il sito ASPPDF
<%
Set Pdf = Server.CreateObject("Persits.Pdf")
' Create empty document
Set Doc = Pdf.CreateDocument
' Set various document properties
Doc.Title = "AspPDF creato al volo e servito con attachment"
Doc.Creator = "Davide conti"
' Add a new page
Set Page = Doc.Pages.Add
' Select one of the standard PDF fonts
Set Font = Doc.Fonts("Times")
' Param string
Params = "x=0; y=650; width=612; alignment=center; size=50"
' Draw text on page
Page.Canvas.DrawText "AspPDF creato al volo e servito con attachment!", Params, Font
' Save to HTTP stream
Doc.SaveHttp "attachment;filename=ciao.pdf"
%>